mirror of
https://github.com/ankitects/anki.git
synced 2025-11-11 15:17:12 -05:00
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:
parent
a686f2cf44
commit
5410d27aaa
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue