mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 20:30:11 +00:00
5dab5bf0e9
Add another missing feature from web css. It's nice to be able to use the same variables in color-mix() and here.
28 lines
166 B
CSS
28 lines
166 B
CSS
a {
|
|
opacity: initial;
|
|
}
|
|
|
|
b {
|
|
opacity: inherit;
|
|
}
|
|
|
|
c {
|
|
opacity: unset;
|
|
}
|
|
|
|
d {
|
|
opacity: 1;
|
|
}
|
|
|
|
e {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
f {
|
|
opacity: 0;
|
|
}
|
|
|
|
g {
|
|
opacity: 50%;
|
|
}
|