-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathstylesheet.css
More file actions
62 lines (51 loc) · 1.1 KB
/
stylesheet.css
File metadata and controls
62 lines (51 loc) · 1.1 KB
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
QTreeView {
color: #fff;
background-color: #121212;
border: none;
}
QTreeView QHeaderView::section {
padding-left: 5px;
color: #fff;
background-color: #2A2A2A;
}
QTreeView::branch:has-children:!has-siblings:closed,
QTreeView::branch:closed:has-children:has-siblings {
border-image: none;
image: url(":/images/branch_closed.png");
}
QTreeView::branch:open:has-children:!has-siblings,
QTreeView::branch:open:has-children:has-siblings {
border-image: none;
image: url(":/images/branch_open.png");
}
QTreeView::item {
border: 1px solid transparent;
}
QTreeView::item:selected {
border-color: #4FA0F1;
background-color: #27609A;
color: #fff;
}
QMenu {
color: #fff;
background-color: #2A2A2A;
border: 1px solid #121212;
}
QMenu::item {
padding: 2px 25px 2px 20px;
border: 1px solid transparent;
}
QMenu::item:selected {
border-color: #4FA0F1;
background-color: #27609A;
}
QMenu::item:disabled {
color: #888;
}
QMenuBar {
color: #fff;
background-color: #121212;
}
QMenuBar::item:selected {
background-color: #545454;
}