aboutsummaryrefslogtreecommitdiff
path: root/libLumina/themes/None.qss.template
diff options
context:
space:
mode:
Diffstat (limited to 'libLumina/themes/None.qss.template')
-rw-r--r--libLumina/themes/None.qss.template50
1 files changed, 43 insertions, 7 deletions
diff --git a/libLumina/themes/None.qss.template b/libLumina/themes/None.qss.template
index e141b34a..294aafb9 100644
--- a/libLumina/themes/None.qss.template
+++ b/libLumina/themes/None.qss.template
@@ -6,20 +6,56 @@ 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;*/
+ border-radius: 5px;
}
+
/* Set the default canvas appearance for Lumina desktop plugins*/
-LDPlugin#LuminaDesktopPlugin{
- background: transparent;
+LDPlugin#audioplayer{
+ background: %%BASECOLOR%%;
border-radius: 5px;
- border: none;
}
-/*For special desktop plugins that should never have a transparent background*/
-LDPlugin#LuminaDesktopPluginVisible{
+
+LDPlugin#calendar{
+ background: %%BASECOLOR%%;
+ border-radius: 5px;
+}
+
+LDPlugin#notepad{
background: %%BASECOLOR%%;
+ border-radius: 5px;
+}
+
+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: %%TEXTDISABLECOLOR%%;
+}
+LDPlugin#applauncher QToolButton:hover{
+ background: %%ACCENTDISABLECOLOR%%;
+ border-radius: 5px;
+ color: %%TEXTHIGHLIGHTCOLOR%%;
+}
+
+LDPlugin#desktopview QListWidget{
+ background: transparent;
border: 1px solid transparent;
+}
+LDPlugin#desktopview QListWidget::item{
+ 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: %%TEXTDISABLECOLOR%%;
+}
+
+LDPlugin#desktopview QListWidget::item:hover{
+ background: %%ACCENTDISABLECOLOR%%;
border-radius: 5px;
+ color: %%TEXTHIGHLIGHTCOLOR%%;
}
/*For the special widgets on the user button*/
UserItemWidget{
bgstack15