aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-02-05 07:51:36 -0500
committerKen Moore <ken@pcbsd.org>2015-02-05 07:51:36 -0500
commitb28ce426ffb13d67a72597ab549d0cc603bae40e (patch)
treee2e8a30ecdd5890c9945061cb4c793726fbd37cb
parentFinish cleaning up that last bits of hard-coded stylesheets, and tie them in ... (diff)
downloadlumina-b28ce426ffb13d67a72597ab549d0cc603bae40e.tar.gz
lumina-b28ce426ffb13d67a72597ab549d0cc603bae40e.tar.bz2
lumina-b28ce426ffb13d67a72597ab549d0cc603bae40e.zip
Oops, forgot to add the new Lumina theme definitions into the "None" theme (so things still function properly).
-rw-r--r--libLumina/themes/None.qss.template28
1 files changed, 28 insertions, 0 deletions
diff --git a/libLumina/themes/None.qss.template b/libLumina/themes/None.qss.template
index c48ec645..e141b34a 100644
--- a/libLumina/themes/None.qss.template
+++ b/libLumina/themes/None.qss.template
@@ -21,6 +21,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);
+}
/* CALENDER WIDGET */
/* (This is a special hack since there is no official support for stylesheets for this widget) */
bgstack15