gtk/testsuite/css/parser/opacity.css
Alice Mikhaylenko 5dab5bf0e9 css: Allow percents in opacity
Add another missing feature from web css. It's nice to be able to use the
same variables in color-mix() and here.
2024-06-06 00:22:19 +04:00

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%;
}