-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use more modern
--alpha(color / 50%)
syntax (#15665)
This PR changes the syntax for the `--alpha(…)` function to look like more modern CSS. The arguments to apply an alpha to a color is using the `/` syntax instead of the comma syntax. ```diff - --alpha(color, 50%) + --alpha(color / 50%) ``` This syntax is now similar to modern `rgb(0 0 0 / 50%)` syntax in CSS.
- Loading branch information
1 parent
f93c42f
commit a51b214
Showing
3 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters