diff options
author | Ken Moore <ken@pcbsd.org> | 2015-02-09 12:04:39 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-02-09 12:04:39 -0500 |
commit | d8318926a3f884c49508a533ee6c41623fe6225a (patch) | |
tree | d3b2d8aa827071460e4c8e822ce36f6e1ad1cb99 | |
parent | Fix the OnlyShowIn= entry to use "LUMINA" (all caps) since that is what is al... (diff) | |
download | lumina-d8318926a3f884c49508a533ee6c41623fe6225a.tar.gz lumina-d8318926a3f884c49508a533ee6c41623fe6225a.tar.bz2 lumina-d8318926a3f884c49508a533ee6c41623fe6225a.zip |
Another couple small fixes for the default lumina theme.
-rw-r--r-- | libLumina/themes/Lumina-default.qss.template | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/libLumina/themes/Lumina-default.qss.template b/libLumina/themes/Lumina-default.qss.template index d01608db..6802fb06 100644 --- a/libLumina/themes/Lumina-default.qss.template +++ b/libLumina/themes/Lumina-default.qss.template @@ -208,10 +208,13 @@ QComboBox{ /* VIEW WIDGETS */ QTreeView, QListView{ background: %%ALTBASECOLOR%%; + alternate-background-color: %%BASECOLOR%%; + selection-background-color: %%ACCENTCOLOR%%; border: 1px solid %%ACCENTCOLOR%%; border-radius: 3px; show-decoration-selected: 1; color: %%TEXTCOLOR%%; + selection-color: %%TEXTCOLOR%%; } /* @@ -219,11 +222,11 @@ QTreeView::item and QListView::item unneccessary: Already set though parentage and causes usage errors if set manually */ -QTreeView::item:selected, QListView::item:selected{ +/*QTreeView::item:selected, QListView::item:selected{ background: %%SECONDARYDISABLECOLOR%%; - border: %%ACCENTCOLOR%%; + border-color: %%ACCENTCOLOR%%; color: %%TEXTCOLOR%%; -} +}*/ QTreeView::item:hover, QListView::item:hover{ background: %%HIGHLIGHTDISABLECOLOR%%; } @@ -428,7 +431,7 @@ QRadioButton::indicator:checked{ background: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:1, fx:0.5, fy:0.5, stop:0 %%TEXTCOLOR%%, stop:0.25 %%TEXTCOLOR%%, stop:0.25001 transparent); } QCheckBox::indicator:checked, QGroupBox::indicator:checked{ - padding: 3px; + padding: 2px; background-origin: content; background-clip: content; background: %%TEXTCOLOR%%; |