Chris Blakley

Results 113 issues of Chris Blakley

Currently, Nebula provides a cookie/privacy notification option but it appears there is some traction gaining on a Consent API that lets all themes, plugins, and functionality work together with the...

Plugin / Library / API
Backend (Server)
Frontend (Script)

This looks like a great way to improve render performance by informing the browser of invisible content (behind a tab UI, for example). https://github.com/WICG/display-locking My first question is is it...

:thought_balloon: Question / Research
Backend (Server)

First for service worker and then possibly wider use cases in the future. https://developers.google.com/web/updates/2019/08/periodic-background-sync I wonder if Workbox has an interface for this?

:thought_balloon: Question / Research
Frontend (Script)

If the brand only has 1 color, and uses the customizer, hide the secondary color in the Design Reference metabox in the WP admin dashboard. ![Screen Shot 2019-08-09 at 9...

WP Admin / Shortcode / Widget
Frontend (Style)
Backend (Server)

Currently this is often used: ```sass @include link-colors($primary_color, #fff); ``` But if the primary color is (for example) yellow, the white hover will not provide enough contrast ratio. Instead, I'd...

Frontend (Style)

To help with optimization, developers should be saving out large images (like hero images) at various sizes then use media queries in the CSS to load them at appropriate times....

💡 Feature Request
Graphics
Frontend (Style)

`srcset` is a great attribute, but unless developers know exactly what image sizes are available they may simply choose to not use it. WordPress automatically adds it to things like...

:thought_balloon: Question / Research
💡 Feature Request
Graphics
Backend (Server)

The Infinite Load query currently uses AJAX and also has an embedded script which I would love to move into nebula.js instead. This could be another great use for the...

💡 Feature Request
Backend (Server)
Frontend (Script)

Old caches that are not used anymore are remaining and not being removed. ![Screen Shot 2019-05-13 at 10 24 07 AM](https://user-images.githubusercontent.com/6349678/57629197-651e2100-7569-11e9-8a5c-67d303ab89eb.png)

Frontend (Script)
help wanted

From @patmcneil : This may help make detection of parent "sections" in menus of custom post types more accurate on singular posts. ```php add_action('nav_menu_css_class', 'add_current_nav_class', 10, 2); function add_current_nav_class($classes, $item)...

Backend (Server)