In following example I'm reverting some color-changes made by a package:
table.somePluginTable{
& tbody, thead {
& tr {
& > .alt-fixed-left,
& > .alt-fixed-right {
background-color: revert;
}
}
}
}
- Can this be less nested? e.g. can the
& trbe with the& > .alt-fixed-las& tr > .alt-fixed-l? - or is it faster to use
& tr > [class^=".alt-fixed-"]?//(for selecting both at the same time)