diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-12-13 08:04:29 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-12-13 08:04:29 +0300 |
| commit | 0caf502b79a4e027bbbae98f66e9405d19791389 (patch) | |
| tree | 72971d108fbf6c2f3bde84e73b7f8e4cb4d56da5 /themes/light | |
| parent | 13f32bb62e5cf0997208e2e6a17318d623325d86 (diff) | |
fix correct font-family not applying for multiple select element
Diffstat (limited to 'themes/light')
| -rw-r--r-- | themes/light/prefs.less | 4 | ||||
| -rw-r--r-- | themes/light/tt-rss.less | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/themes/light/prefs.less b/themes/light/prefs.less index b26ff646c..f74dcd904 100644 --- a/themes/light/prefs.less +++ b/themes/light/prefs.less @@ -9,6 +9,10 @@ body.ttrss_prefs { color : @default-text; } + select[multiple="multiple"] option { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + } + .text-muted { color : @fg-text-muted; } diff --git a/themes/light/tt-rss.less b/themes/light/tt-rss.less index bb6ef9ef8..12d3cea34 100644 --- a/themes/light/tt-rss.less +++ b/themes/light/tt-rss.less @@ -9,6 +9,10 @@ body.ttrss_main { outline: none; } + select[multiple="multiple"] option { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + } + .post { padding : 0; font-size : @font-size-toolbar; |