You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CSS custom properties spec is starting to be supported by browsers. Like libsass, Sass 3.4 supported custom properties as basically the same as normal properties. Unfortunately, this is incompatible with plain CSS; custom property values can contain almost any text, including many Sass constructs that are currently parsed as Sass.
Sass 3.5 changes the behavior to hew much more closely to CSS. Custom property values are now parsed exactly according to the CSS spec, with the sole exception of interpolation, which is provides a way for users to inject Sass objects into their custom properties.
See sass/sass#1128 for a more thorough discussion. Related specs are in
To install: `npm install`.
To run: `npm start`.
Will require sass gem > 3.5 on system, for [custom-var][] support.
NOTE for developers:
Contribution without using these building tools were still welcome.
[grunt-contrib-sass]: https://github.com/gruntjs/grunt-contrib-sass
[custom-var]: sass/libsass#2076
The CSS custom properties spec is starting to be supported by browsers. Like libsass, Sass 3.4 supported custom properties as basically the same as normal properties. Unfortunately, this is incompatible with plain CSS; custom property values can contain almost any text, including many Sass constructs that are currently parsed as Sass.
Sass 3.5 changes the behavior to hew much more closely to CSS. Custom property values are now parsed exactly according to the CSS spec, with the sole exception of interpolation, which is provides a way for users to inject Sass objects into their custom properties.
See sass/sass#1128 for a more thorough discussion. Related specs are in
The text was updated successfully, but these errors were encountered: