diff options
Diffstat (limited to 'libLumina/themes/Lumina-default.qss.template')
-rw-r--r-- | libLumina/themes/Lumina-default.qss.template | 62 |
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 + |