Chris Blakley
Chris Blakley
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...
Add line numbers to JS catch statements if/when it becomes standardized [❌ no proposal at this time]
Currently only Firefox supports `error.lineNumber` inside of `catch()` statements, so we can't use it in Nebula. Monitor it so that if/when it becomes standard in all browsers that we can...
PHP Version Timeline: https://www.php.net/supported-versions.php PHP Release Notes: https://php.watch/versions ## PHP 8.0 Info & References https://php.watch/versions/8.0 https://stitcher.io/blog/new-in-php-8 - Release Date: November 2020 - Active Support Until November 2022 - Security Support...
This is meant for advertisers, but the API appears to be available directly in JavaScript, so we could technically use it to personalize websites based on user interest in general......
Style the dialog as well as the background (and see if transition animation is possible). Also add event tracking and other features that we have in the Bootstrap Modals. ![Screen...
Will need a transitions stylesheet along with an entering and exiting meta tag. The API is still currently in development.
The text second line in lists appear underneath the bullet because the baseline.scss partial sets the UL to be positioned inside. I'd like to consider changing this to be outside...
Like phone numbers and email addresses, modern mobile browsers will automatically open the native maps app when an address is clicked- even if it is not linked. According to the...
The class `alignwide` on the `` wrapping class should extend the image inside beyond the width of the text column. The `alignfull` class is supposed to extend the image all...
Currently how this is handled (PHP 7+): ```php $data['date'] = $data['date'] ?? new DateTime(); ``` In PHP 7.4: ```php $data['date'] ??= new DateTime(); ```