Add border styles for answer buttons in reviewer CSS

This commit is contained in:
Expertium 2025-09-29 17:38:59 +03:00 committed by GitHub
parent a74fd43d34
commit aaa9f8c11e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,6 +28,34 @@ button {
white-space: nowrap; white-space: nowrap;
margin: 9px; margin: 9px;
position: relative; 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 { .hitem {