-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathstyle.qss
175 lines (149 loc) · 2.84 KB
/
style.qss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/***************
* Header
***************/
QWidget
{
font-family: "Open Sans";
font-style: "Regular";
}
#header QPushButton
{
background-color: transparent;
font-size: 15px;
font-style: "Condensed Light";
border: none;
padding: 15px 0px 10px 0px;
}
#header QPushButton:hover
{
border-bottom: 2px solid rgb(85, 85, 85);
}
#header QPushButton:pressed
{
border-bottom: 2px solid rgb(255, 255, 255);
}
#header QPushButton[active=true]
{
border-bottom: 2px solid rgb(195, 195, 195);
}
/***************
* Project subheader
***************/
#subheader, #project_subheader
{
background-color: rgb(38, 38, 38);
border-bottom: 1px solid rgb(20, 20, 20);
}
#subheader_label {
font-size: 20px;
font-style: "Condensed Light";
}
#subheader #search_frame
{
border-radius: 5px;
}
#subheader #search_frame[collapsed="false"]
{
background-color: rgb(195, 195, 195);
}
#subheader #search_frame[collapsed="true"]
{
background-color: transparent;
}
#subheader #search_text
{
color: rgb(38, 38, 38);
background-color: transparent;
border: none;
}
/***************
* Recents subheader
***************/
#project_subheader QPushButton
{
/*Setting the border to 0 actually makes the background
transparent when pressed in. Where as
background-color: transparent; didn't work with PySide2 Fusion style.*/
border: 0px;
}
#project_subheader QPushButton:pressed {
/*Fusion styled UIs don't indent the button contents when pressed,
When combined with a transparent background there is no indication
of it being pressed, so this makes it indent.*/
margin-left: 2px;
margin-top: 2px;
}
#configuration_frame
{
background-color: rgb(67, 131, 168);
padding: 10px;
}
#configuration_name
{
color: white;
}
#project_menu
{
background-color: rgb(65, 65, 65);
}
#project_menu::menu-indicator
{
image: url(does_not_exist.jpg);
}
#project_menu_configuration_label
{
padding-left: 5px;
padding-top: 5px;
padding-bottom: 2px;
}
#project_subheader #project_name
{
font-size: 20px;
font-style: "Condensed Light";
}
#command_panel
{
padding: 10px;
background-color: rgb(40, 40, 40);
}
#tab_view
{
background-color: rgb(40, 40, 40);
}
#user_button
{
margin: 2px;
background-color: transparent;
}
#user_button::menu-indicator
{
image: none;
}
#stack
{
border-top: 1px solid rgb(20, 20, 20);
border-bottom: 1px solid rgb(20, 20, 20);
}
#footer QPushButton
{
border: 1px solid transparent;
border-radius: 3px;
text-align: center;
}
#footer QPushButton:hover
{
border: 1px solid rgb(67, 131, 168);
border-radius: 3px;
}
/***************
* Banner widget
***************/
#BannerWidget
{
background-color: rgb(67, 131, 168);
color: rgb(255, 255, 255);
}
#banners
{
background-color: rgb(34, 65, 84);
}