1/* This is a blank stylesheet to disable the Lumina Themes almost entirely*/
2QWidget{
3  font-family: %%FONT%%;
4  font-size: %%FONTSIZE%%;
5}
6/* Set the panel appearance for this theme (unless manually customized) */
7QWidget#LuminaPanelColor{
8  background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1, stop: 0 %%PRIMARYCOLOR%%, stop: 1 %%PRIMARYDISABLECOLOR%%);
9  border-radius: 5px;
10}
11QWidget#LuminaBootSplash{
12  background: %%BASECOLOR%%;
13  border-radius: 5px;
14}
15
16/* Set the default canvas appearance for Lumina desktop plugins*/
17/* Default to a non-transparent background for all desktop plugins*/
18LDPlugin{
19  background: %%BASECOLOR%%;
20  border-radius: 5px;
21}
22/* Now specify which plugins should have a transparent background */
23LDPlugin#applauncher, LDPlugin#desktopview{
24  background: transparent;
25  border-radius: 5px;
26}
27
28LDPlugin#applauncher  QToolButton{
29background: transparent;
30  border: none;
31  border-radius: 5px;
32  color: white;
33}
34LDPlugin#applauncher  QToolButton:hover{
35  background: %%PRIMARYDISABLECOLOR%%;
36  border: none;
37  border-radius: 5px;
38  color: %%TEXTHIGHLIGHTCOLOR%%;
39}
40
41LDPlugin#desktopview QListWidget{
42  background: transparent;
43  border: 1px solid transparent;
44}
45LDPlugin#desktopview QListWidget::item{
46  background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
47  stop: 0 transparent,
48  stop: 0.7 transparent,
49  stop: 1.0 %%PRIMARYDISABLECOLOR%%);
50  border-radius: 5px;
51  color: %%TEXTCOLOR%%;
52}
53
54LDPlugin#desktopview QListWidget::item:hover{
55  background: %%PRIMARYDISABLECOLOR%%;
56  border-radius: 5px;
57  color: %%TEXTHIGHLIGHTCOLOR%%;
58}
59/*For the special widgets on the user button*/
60UserItemWidget, ItemWidget{
61  background: transparent;
62  border-radius: 3px;
63}
64UserItemWidget:hover, ItemWidget:hover{
65  background: %%HIGHLIGHTCOLOR%%;
66  color: %%TEXTHIGHLIGHTCOLOR%%;
67}
68
69/*Special taskmanager window buttons: based on window state*/
70LTBWidget{
71  border: 1px solid transparent;
72  border-radius: 3px;
73}
74LTBWidget::menu-indicator{ image: none; } /*disable the menu arrow*/
75LTBWidget#WindowVisible{
76  background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1.1, stop: 0.3 %%SECONDARYCOLOR%%, stop: 1 transparent);
77}
78LTBWidget#WindowInvisible{
79  /* Primary color is used for the panel appearance, so use that to make it disappear*/
80  background: transparent;
81}
82LTBWidget#WindowActive{
83  background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1.1, stop: 0.3 %%HIGHLIGHTDISABLECOLOR%%, stop: 1 transparent);
84}
85LTBWidget#WindowAttention{
86  background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 1.1, stop: 0.3 %%HIGHLIGHTCOLOR%%, stop: 1 transparent);
87}
88LTBWidget:hover, LTBWidget#WindowVisible:hover, LTBWidget#WindowInvisible:hover, LTBWidget#WindowActive:hover, LTBWidget#WindowAttention:hover{
89  background: %%HIGHLIGHTCOLOR%%;
90  color: %%TEXTHIGHLIGHTCOLOR%%;
91  border: 1px solid %%ACCENTCOLOR%%;
92}
93
94/* CALENDER WIDGET */
95 /* (This is a special hack since there is no official support for stylesheets for this widget) */
96 QCalendarWidget QWidget#qt_calendar_navigationbar{
97   background-color: %%ALTBASECOLOR%%;
98 }
99QCalendarWidget QWidget{
100   background-color: %%BASECOLOR%%;
101   alternate-background-color: %%HIGHLIGHTDISABLECOLOR%%;
102   color: %%TEXTCOLOR%%;
103}
104QCalendarWidget QAbstractButton{
105  background-color: transparent;
106}
107QCalendarWidget QAbstractButton::menu-indicator{
108  image: none;
109}
110QCalendarWidget QAbstractItemView{
111  background-color: %%SECONDARYCOLOR%%;
112  selection-background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 %%HIGHLIGHTDISABLECOLOR%%, stop: 1 %%HIGHLIGHTCOLOR%%);;
113  selection-color: %%TEXTHIGHLIGHTCOLOR%%;
114}
115QCalendarWidget QWidget#qt_calendar_calendarview{
116  background-color: %%ALTBASECOLOR%%;
117  border: none;
118}