Tag browser: Fix incorrect text color when using dark theme for hovered item

This commit is contained in:
Kovid Goyal 2019-10-21 14:57:37 +05:30
parent 3bf65b261e
commit d744eb1a6d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -186,6 +186,7 @@ class TagsView(QTreeView): # {{{
QTreeView::item:hover { QTreeView::item:hover {
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #e7effd, stop: 1 #cbdaf1); background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #e7effd, stop: 1 #cbdaf1);
color: black;
border: 1px solid #bfcde4; border: 1px solid #bfcde4;
border-radius: 6px; border-radius: 6px;
} }