From 0caf502b79a4e027bbbae98f66e9405d19791389 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 13 Dec 2024 08:04:29 +0300 Subject: fix correct font-family not applying for multiple select element --- themes/light/prefs.less | 4 ++++ themes/light/tt-rss.less | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'themes/light') 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; -- cgit v1.2.3-54-g00ecf