mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
1a213679bd
Functions should not have a space before the opening parenthesis. So change output like alpha (@color, 0.5) to alpha(@color, 0.5) and do the same for "shade" and "mix". Tests have been updated accordingly.
5 lines
72 B
CSS
5 lines
72 B
CSS
* {
|
|
background-color: shade(@bg_color, 0.5);
|
|
color: rgb(255,0,0);
|
|
}
|