Kahenraz
(Matt D.)
1
Currently, I have to define styles in this order due to precedence:
notebook header.top tab {
}
notebook header.top tab:checked {
}
Is there a syntax for something like this:
notebook header.top tab:not(checked) {
}
This doesn’t evaluate as I would expect. It affects all tabs.
chrisaw
(Chris Williams)
2
The syntax seems to be:
notebook header.top tab:not(:checked) {
}
An excerpt from the GTK CSS Overview:
Pattern |
Matches |
E:not(〈selector〉) |
any E node which does not match the simple selector 〈selector〉 |
system
(system)
Closed
3
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.