Fix editor buttons not highlighted

The selector 'button.linkb' takes precedence on '.highlighted' because
it is more specific, so that '.highlighted' is never applied.
This commit is contained in:
Simone Gaiarin 2020-04-14 19:04:03 +02:00
parent a686f2cf44
commit 5410d27aaa

View file

@ -60,12 +60,12 @@ button.linkb {
background: transparent; background: transparent;
} }
.linkb:disabled { button.linkb:disabled {
opacity: 0.3; opacity: 0.3;
cursor: not-allowed; cursor: not-allowed;
} }
.highlighted { button.highlighted {
border-bottom: 3px solid #000; border-bottom: 3px solid #000;
} }