fix correct font-family not applying for multiple select element

This commit is contained in:
Andrew Dolgov
2024-12-13 08:04:29 +03:00
parent 13f32bb62e
commit 0caf502b79
8 changed files with 44 additions and 0 deletions

View File

@@ -29,6 +29,9 @@ body.ttrss_main {
body.ttrss_main :focus {
outline: none;
}
body.ttrss_main select[multiple="multiple"] option {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.ttrss_main .post {
padding: 0;
font-size: 13px;
@@ -1510,6 +1513,9 @@ body.ttrss_prefs h4 {
font-weight: 600;
color: #555;
}
body.ttrss_prefs select[multiple="multiple"] option {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.ttrss_prefs .text-muted {
color: #888888;
}