aboutsummaryrefslogtreecommitdiff
path: root/libLumina/themes
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-05-08 14:34:42 -0400
committerKen Moore <moorekou@gmail.com>2015-05-08 14:34:42 -0400
commitb9cd544c011408036aff9ffc649b3bdbfd25af2b (patch)
treeffd49ef3515b9b1d3e382f5da7f66d9947b90e70 /libLumina/themes
parentMerge pull request #115 from beatgammit/patch-1 (diff)
parentAdapt the theme for the other plugins (diff)
downloadlumina-b9cd544c011408036aff9ffc649b3bdbfd25af2b.tar.gz
lumina-b9cd544c011408036aff9ffc649b3bdbfd25af2b.tar.bz2
lumina-b9cd544c011408036aff9ffc649b3bdbfd25af2b.zip
Merge pull request #111 from william-os4y/iconLayout
New icon layout for the icons on the desktop
Diffstat (limited to 'libLumina/themes')
-rw-r--r--libLumina/themes/Lumina-default.qss.template62
1 files changed, 55 insertions, 7 deletions
diff --git a/libLumina/themes/Lumina-default.qss.template b/libLumina/themes/Lumina-default.qss.template
index fd9c97e7..06cbafb6 100644
--- a/libLumina/themes/Lumina-default.qss.template
+++ b/libLumina/themes/Lumina-default.qss.template
@@ -12,17 +12,65 @@ QWidget#LuminaPanelColor{
/*border: 1px solid transparent;*/
}
/* Set the default canvas appearance for Lumina desktop plugins*/
-LDPlugin#LuminaDesktopPlugin{
- background: transparent;
- border-radius: 5px;
- border: none;
+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;*/
+}
+
+LDPlugin#audioplayer {
+ background: %%BASECOLOR%%;
+}
+
+LDPlugin#calendar {
+ background: %%BASECOLOR%%;
}
-/*For special desktop plugins that should never have a transparent background*/
-LDPlugin#LuminaDesktopPluginVisible{
+
+LDPlugin#notepad {
background: %%BASECOLOR%%;
+}
+
+LDPlugin#applauncher QWidget{
+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%%;
+}
+LDPlugin#applauncher QWidget:hover{
+ background: %%ACCENTDISABLECOLOR%%;
+ border-radius: 5px;
+ color: %%ALTBASECOLOR%%;
+}
+LDPlugin#applauncher QMenu{
+background: %%BASECOLOR%%;
+color: %%TEXTCOLOR%%;
+}
+
+LDPlugin#desktopview QWidget{
+ 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: %%ALTBASECOLOR%%;
}
+LDPlugin#desktopview QMenu{
+background: %%BASECOLOR%%;
+color: %%TEXTCOLOR%%;
+}
+
+LDPlugin#desktopview QListWidget::item:hover{
+ background: %%ACCENTDISABLECOLOR%%;
+ border-radius: 5px;
+ color: %%ALTBASECOLOR%%;
+}
+
/*For the special widgets on the user button*/
UserItemWidget{
background: transparent;
@@ -525,4 +573,4 @@ QCalendarWidget QWidget#qt_calendar_calendarview{
border: none;
}
- \ No newline at end of file
+
bgstack15