-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
style.css
126 lines (103 loc) · 2.14 KB
/
style.css
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
QMainWindow > QToolBar QToolButton::menu-indicator { image: none; }
QToolBar {
border: 0;
}
QToolBar QLineEdit {
background: transparent;
border: 1px solid transparent;
border-radius: 5px;
}
QToolBar QLineEdit:focus {
border: 1px solid palette(highlight);
background: normal;
}
QSlider[knobless="true"]::handle {
border: 0;
height: 0;
}
QStatusBar {
border: 0;
padding: 0;
background: palette(base);
color: palette(text);
}
QStatusBar QToolBar {
padding:0;
spacing:0;
margin:0;
border:0;
}
QStatusBar::item {
border: 0;
padding: 0;
margin: 0;
}
QStatusBar QToolButton::menu-indicator {
image: none;
}
AppsWidget {
background-color: palette(window);
border-top: 1px solid palette(mid);
}
RegionsView QPushButton[regionId] {
margin: 5px;
padding: 7px 10px;
text-align: left;
vertical-align: middle;
background-color: transparent;
border-radius: 3px;
}
RegionsView QPushButton[regionId]:hover, RegionsView QPushButton[regionId]:checked {
background: palette(highlight);
color: palette(highlighted-text);
}
RegionsView QPushButton[regionId]:focus {
background: palette(mid);
outline: 0;
}
SidebarHeader {
padding: 0;
margin: 0;
spacing: 0;
border: 0;
}
SidebarHeader QToolButton {
border: 0;
padding: 0;
margin: 0;
spacing: 0;
height: 20;
width: 24;
}
SidebarHeader QPushButton {
background: transparent;
text-align: center;
}
SidebarHeader QComboBox::drop-down {
width: 0;
border-style: none;
}
SearchView *[recentItem="true"] {
border: 0;
padding: .15em 0;
}
SearchView SearchLineEdit {
padding: .5em;
border-radius: 5px;
border: 3px solid palette(mid);
}
SearchView SearchLineEdit:focus {
border-color: palette(highlight);
}
SearchView *[recentItem="true"]:focus {
outline: 1px solid palette(highlight);
}
QListWidget[suggest="true"]::item {
border: 0;
padding: .25em;
border-radius: 3px;
}
QListWidget[suggest="true"]::item:hover, QListWidget[suggest="true"]::item:focus {
background: palette(highlight);
color: palette(highlighted-text);
}