diff options
author | Ken Moore <ken@pcbsd.org> | 2015-02-05 07:49:20 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-02-05 07:49:20 -0500 |
commit | 74aae81aa755246d5de1a83e9d7b46fdd59934b1 (patch) | |
tree | 1dcff81c83f5533afcef81a76262adb55d9db2ce /libLumina | |
parent | Clean up the default theme template a bit more, and remove some leftover styl... (diff) | |
download | lumina-74aae81aa755246d5de1a83e9d7b46fdd59934b1.tar.gz lumina-74aae81aa755246d5de1a83e9d7b46fdd59934b1.tar.bz2 lumina-74aae81aa755246d5de1a83e9d7b46fdd59934b1.zip |
Finish cleaning up that last bits of hard-coded stylesheets, and tie them in to the lumina theme system.
Diffstat (limited to 'libLumina')
-rw-r--r-- | libLumina/themes/Lumina-default.qss.template | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/libLumina/themes/Lumina-default.qss.template b/libLumina/themes/Lumina-default.qss.template index edd7b73b..d01608db 100644 --- a/libLumina/themes/Lumina-default.qss.template +++ b/libLumina/themes/Lumina-default.qss.template @@ -23,7 +23,34 @@ LDPlugin#LuminaDesktopPluginVisible{ border: 1px solid transparent; border-radius: 5px; } - +/*For the special widgets on the user button*/ +UserItemWidget{ + background: transparent; + border-radius: 3px; +} +UserItemWidget:hover{ + background: %%HIGHLIGHTCOLOR%%; + color: %%TEXTHIGHLIGHTCOLOR%%; +} +/*Special taskmanager window buttons: based on window state*/ +LTBWidget{ + border: 1px solid transparent; + border-radius: 3px; +} +LTBWidget::menu-indicator{ image: none; } /*disable the menu arrow*/ +LTBWidget#WindowVisible{ + background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1, stop: 0 %%SECONDARYDISABLECOLOR%%, stop: 1 transparent); +} +LTBWidget#WindowInvisible{ + /* Primary color is used for the panel appearance, so use that to make it disappear*/ + background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1, stop: 0 %%PRIMARYCOLOR%%, stop: 1 transparent); +} +LTBWidget#WindowActive{ + background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1, stop: 0 %%ACCENTCOLOR%%, stop: 1 transparent); +} +LTBWidget#WindowAttention{ + background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1, stop: 0 %%HIGHLIGHTDISABLECOLOR%%, stop: 1 transparent); +} /* ALL THE WIDGETS WITH THE BASE COLOR */ QMainWindow, QMenu, QDialog, QMessageBox{ background: %%BASECOLOR%%; |