This repository has been archived by the owner on May 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Support for transparent CSS value is missing #319
Comments
mkgl
added a commit
to mkgl/sass-compiler
that referenced
this issue
Aug 28, 2018
…omponents, alpha, adjust-color) vaadin#319 * gracefully return values as per http://www.w3.org/TR/css3-color/#transparent-def whenever possible
mkgl
added a commit
to mkgl/sass-compiler
that referenced
this issue
Aug 28, 2018
…in#319 * map only transparent eagerly to transparent
mkgl
added a commit
to mkgl/sass-compiler
that referenced
this issue
Aug 28, 2018
* Consider the alpha channel if transparent is given as input (was previously ignored, and would return 'black') * Return literal 'transparent' untouched if it was given as input, without parameters
mkgl
added a commit
to mkgl/sass-compiler
that referenced
this issue
Aug 28, 2018
…omponents, alpha, adjust-color) vaadin#319 * gracefully return values as per http://www.w3.org/TR/css3-color/#transparent-def whenever possible
mkgl
added a commit
to mkgl/sass-compiler
that referenced
this issue
Aug 28, 2018
…in#319 * map only transparent eagerly to transparent
mkgl
added a commit
to mkgl/sass-compiler
that referenced
this issue
Aug 28, 2018
* Consider the alpha channel if transparent is given as input (was previously ignored, and would return 'black') * Return literal 'transparent' untouched if it was given as input, without parameters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For example when building a Valo theme, one cannot use the transparent CSS value, at least for some exposed valo variables, such as:
The Sass compiler just blows.
As a workaround it is possible to use
rgba(0, 0, 0, 0)
, yet the "original" Sass compiler gracefully supports both. See also:PR incoming (maybe) ;)
The text was updated successfully, but these errors were encountered: