mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04: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;
|
||||
}
|
||||
|
||||
.linkb:disabled {
|
||||
button.linkb:disabled {
|
||||
opacity: 0.3;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.highlighted {
|
||||
button.highlighted {
|
||||
border-bottom: 3px solid #000;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue