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;
}
.linkb:disabled {
button.linkb:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.highlighted {
button.highlighted {
border-bottom: 3px solid #000;
}