From 70140761695507bc31010393dbe03c04868ecaba Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 17 Mar 2015 19:03:59 -0700 Subject: [PATCH] UI: Make list selection in dark theme more visible When an item is selected but not focused, it would be too similar to the non-selected color. --- obs/data/themes/Dark.qss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/obs/data/themes/Dark.qss b/obs/data/themes/Dark.qss index 03aba197d..35d9583a1 100644 --- a/obs/data/themes/Dark.qss +++ b/obs/data/themes/Dark.qss @@ -61,6 +61,11 @@ QMenuBar::item { background-color: rgb(58,57,58); /* dark */ } +QListWidget::item:selected:!active { + color: rgb(255, 255, 255); + background-color: rgb(48,47,48); +} + /* Group Box */