summaryrefslogtreecommitdiff
path: root/themes/light.css
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-12-13 08:04:29 +0300
committerAndrew Dolgov <fox@fakecake.org>2024-12-13 08:04:29 +0300
commit0caf502b79a4e027bbbae98f66e9405d19791389 (patch)
tree72971d108fbf6c2f3bde84e73b7f8e4cb4d56da5 /themes/light.css
parent13f32bb62e5cf0997208e2e6a17318d623325d86 (diff)
fix correct font-family not applying for multiple select element
Diffstat (limited to 'themes/light.css')
-rw-r--r--themes/light.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/themes/light.css b/themes/light.css
index a65d521ec..4c61d486f 100644
--- a/themes/light.css
+++ b/themes/light.css
@@ -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;
}