diff options
author | Ken Moore <ken@pcbsd.org> | 2015-05-08 15:04:53 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-05-08 15:04:53 -0400 |
commit | 5ed4b911d42ee2afd9f44398b5bd5ef874f8e686 (patch) | |
tree | 8bbbbcc036d65971804b52853cb1e0f8eb52c4f7 /libLumina/themes/Lumina-default.qss.template | |
parent | Merge pull request #111 from william-os4y/iconLayout (diff) | |
download | lumina-5ed4b911d42ee2afd9f44398b5bd5ef874f8e686.tar.gz lumina-5ed4b911d42ee2afd9f44398b5bd5ef874f8e686.tar.bz2 lumina-5ed4b911d42ee2afd9f44398b5bd5ef874f8e686.zip |
Clean up the new theme modifications a bit to remove some duplications and unintendeded aftereffects. Also move those new modifications into the "None" theme (since it impacts the desktop and not generic applications).
Diffstat (limited to 'libLumina/themes/Lumina-default.qss.template')
-rw-r--r-- | libLumina/themes/Lumina-default.qss.template | 42 |
1 files changed, 16 insertions, 26 deletions
diff --git a/libLumina/themes/Lumina-default.qss.template b/libLumina/themes/Lumina-default.qss.template index 06cbafb6..a3324513 100644 --- a/libLumina/themes/Lumina-default.qss.template +++ b/libLumina/themes/Lumina-default.qss.template @@ -8,47 +8,40 @@ QWidget{ /* Set the panel appearance for this theme (unless manually customized) */ QWidget#LuminaPanelColor{ background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1, stop: 0 %%PRIMARYCOLOR%%, stop: 1 %%PRIMARYDISABLECOLOR%%); - border-radius: 3px; - /*border: 1px solid transparent;*/ -} -/* Set the default canvas appearance for Lumina desktop plugins*/ -QWidget#LuminaPanelColor{ - background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1, stop: 0 %%PRIMARYCOLOR%%, stop: 1 %%PRIMARYDISABLECOLOR%%); - border-radius: 3px; - /*border: 1px solid transparent;*/ + border-radius: 5px; } -LDPlugin#audioplayer { +/* Set the default canvas appearance for Lumina desktop plugins*/ +LDPlugin#audioplayer{ background: %%BASECOLOR%%; + border-radius: 5px; } -LDPlugin#calendar { +LDPlugin#calendar{ background: %%BASECOLOR%%; + border-radius: 5px; } -LDPlugin#notepad { +LDPlugin#notepad{ background: %%BASECOLOR%%; + border-radius: 5px; } -LDPlugin#applauncher QWidget{ +LDPlugin#applauncher QToolButton{ background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 transparent, stop: 0.7 transparent, stop: 1.0 %%ACCENTDISABLECOLOR%%); border-radius: 5px; - color: %%ALTBASECOLOR%%; + color: %%TEXTDISABLECOLOR%%; } -LDPlugin#applauncher QWidget:hover{ +LDPlugin#applauncher QToolButton:hover{ background: %%ACCENTDISABLECOLOR%%; border-radius: 5px; - color: %%ALTBASECOLOR%%; -} -LDPlugin#applauncher QMenu{ -background: %%BASECOLOR%%; -color: %%TEXTCOLOR%%; + color: %%TEXTHIGHLIGHTCOLOR%%; } -LDPlugin#desktopview QWidget{ +LDPlugin#desktopview QListWidget{ background: transparent; border: 1px solid transparent; } @@ -58,17 +51,13 @@ LDPlugin#desktopview QListWidget::item{ stop: 0.7 transparent, stop: 1.0 %%ACCENTDISABLECOLOR%%); border-radius: 5px; - color: %%ALTBASECOLOR%%; -} -LDPlugin#desktopview QMenu{ -background: %%BASECOLOR%%; -color: %%TEXTCOLOR%%; + color: %%TEXTDISABLECOLOR%%; } LDPlugin#desktopview QListWidget::item:hover{ background: %%ACCENTDISABLECOLOR%%; border-radius: 5px; - color: %%ALTBASECOLOR%%; + color: %%TEXTHIGHLIGHTCOLOR%%; } /*For the special widgets on the user button*/ @@ -80,6 +69,7 @@ UserItemWidget:hover{ background: %%HIGHLIGHTCOLOR%%; color: %%TEXTHIGHLIGHTCOLOR%%; } + /*Special taskmanager window buttons: based on window state*/ LTBWidget{ border: 1px solid transparent; |