mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
Add border styles for answer buttons in reviewer CSS
This commit is contained in:
parent
a74fd43d34
commit
aaa9f8c11e
1 changed files with 28 additions and 0 deletions
|
|
@ -28,6 +28,34 @@ button {
|
|||
white-space: nowrap;
|
||||
margin: 9px;
|
||||
position: relative;
|
||||
border-top-color: color(border-subtle);
|
||||
}
|
||||
|
||||
.answerButton,
|
||||
.answerButton:hover {
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.answerButton:focus {
|
||||
border-style: dashed;
|
||||
}
|
||||
|
||||
.answerButton,
|
||||
.answerButton:hover,
|
||||
.answerButton:focus {
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
.answerIncorrect,
|
||||
.answerIncorrect:hover,
|
||||
.answerIncorrect:focus {
|
||||
border-color: #e01b24;
|
||||
}
|
||||
|
||||
.answerCorrect,
|
||||
.answerCorrect:hover,
|
||||
.answerCorrect:focus {
|
||||
border-color: #2ec27e;
|
||||
}
|
||||
|
||||
.hitem {
|
||||
|
|
|
|||
Loading…
Reference in a new issue