Nebula icon indicating copy to clipboard operation
Nebula copied to clipboard

Nebula is a WordPress theme framework that focuses on enhancing development. The core features of Nebula make it a powerful tool for designing, developing, and analyzing WordPress websites consistentl...

Results 120 Nebula issues
Sort by recently updated
recently updated
newest added

https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries Allows for more easily understandable media queries such as: ```css @media ( width

Frontend (Style)

https://www.chromestatus.com/feature/5050913014153216 Stale-While-Revalidate is coming as a Cache Control feature, so when that happens, consider updating the bundled `.htaccess` file to use it. For reference, here is the current method of...

Backend (Server)

This offers better performance than `overflow: hidden` and is more reliable for specifying the `overflow-x` or `overflow-y`. https://caniuse.com/mdn-css_properties_overflow_clip

Frontend (Style)

https://caniuse.com/mdn-api_sanitizer ``` sanitizer.sanitize(input) ``` This would replace the need for this Nebula function: ```js nebula.sanitize = function(text){ return document.createElement('div').appendChild(document.createTextNode(text)).parentNode.innerHTML; }; ```

Plugin / Library / API
Frontend (Script)

Select menu inputs were plug and play. Checkbox inputs require a different approach but are also simple to add/retrieve. I did *not* investigate the "update matching form fields on other...

https://caniuse.com/css-has This will certainly optimize a few things that currently require JavaScript to designate.

Frontend (Style)

...when it is available. ![Screen Shot 2022-05-14 at 12 13 22 AM](https://user-images.githubusercontent.com/6349678/168410316-d507f5b5-042b-4300-b8b2-21355d652c5c.png)

Frontend (Script)

A few features to watch for that will occur natively in CSS rather than needing a preprocessor like Sass: ### Custom Selectors: https://cssdb.org/#custom-selectors ```css @custom-selector :--heading h1, h2, h3, h4,...

Frontend (Style)

PHP Version Timeline: https://www.php.net/supported-versions.php PHP Release Notes: https://php.watch/versions Version Stats: https://stitcher.io/blog/php-version-stats-january-2023 ## PHP 7.4 Info & References https://php.watch/versions/7.4 https://stitcher.io/blog/new-in-php-74 - Release Date: November 2019 - Active Support Until November 2020...

:thought_balloon: Question / Research
Backend (Server)

This CSS property will handle proper color contrast based on given colors and AA/AAA compliance. Super cool and replaces the need for the Nebula Sass mixin that relies on 3...

Frontend (Style)