Chris Eppstein
Chris Eppstein
If an element has a classname that isn't in the source stylesheet, that class should be removed by the rewriter. We can save the classes that are used in only...
an optimized style that's set because it's inferred by both a static and a dynamic source value is currently returned as being set dynamically in addition to the static value....
It would be really useful to have a way to normalize values for properties. This would include doing unit conversions, string case conversion, and whitespace normalization in such a way...
``` > props.getShorthandsForProperty("color") [ 'color', 'border-inline-start', 'border-inline-end', 'border-block-start', 'border-block-end', '-webkit-border-before' ] ``` Need to update and pick up https://github.com/mdn/data/commit/045b9e55d94755a37b8c68dfbfc1bf96f93af64f Will by fixed by https://github.com/mahirshah/css-property-parser/issues/19
The validity checker has bugs that are causing it to return invalid for things that are valid, among these are the initial values for some properties.
``` Error: 'Error parsing shorthand property background: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1). invalid syntax at line 1 col 2: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1) ^ Unexpected "w" ``` ``` Error: 'Error parsing shorthand property...
``` > propParser.expandShorthandProperty("border", "0", false, true); => { border-bottom-color:"currentcolor"; border-bottom-style:"none"; border-bottom-width:"medium"; border-left-color:"currentcolor"; border-left-style:"none"; border-left-width:"medium"; border-right-color:"currentcolor"; border-right-style:"none"; border-right-width:"medium"; border-top-color:"currentcolor"; border-top-style:"none"; border-top-width:"medium"; border-width:"0"; } ``` This is missing: `border-style: none` and `border-color:...
https://github.com/joliss/broccoli-sass/blob/master/index.js#L26-L34 Only some sass options are passed through. Each node-sass release can introduce new options and users can provide their own custom options to their custom functions (new feature in...