-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.qss
95 lines (90 loc) · 1.83 KB
/
MainWindow.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
*
{
background-color: rgb(17, 9, 15);
font: 35px "Segoe UI";
}
QTabWidget::pane
{
border: none;
}
QTabBar
{
background-color: rgb(17, 9, 15);
color: rgb(166, 164, 166);
font: 60px "Segoe UI";
}
QTabBar::tab
{
border: none;
padding: 12px 0 0 25px;
font: 48px "Segoe UI";
}
QTabBar::tab:selected
{
color: rgb(240, 241, 240);
padding: 0px 0 0 25px;
font: 60px "Segoe UI";
}
/***/
QTreeView, QTableView
{
border: none;
outline: none;
color: rgb(80, 80, 80);
selection-background-color: #fff;
}
QTableView
{
margin-left: 20px;
}
QTreeView::item, QTableView::item
{
padding-right: 20px;
}
QTreeView::item:selected, QTableView::item:selected
{
background-color: rgb(17, 9, 15);
color: rgb(240, 240, 240);
}
QTreeView::indicator:checked, QTableView::indicator:checked
{
image: none;
color: rgb(120, 120, 120);
}
QTreeView::item:checked, QTableView::item:checked
{
color: rgb(120, 120, 120);
}
QTreeView::branch {
background: palette(base);
}
QTreeView::branch:has-siblings:!adjoins-item {
background-color: rgb(17, 9, 15);
}
QTreeView::branch:has-siblings:adjoins-item {
background-color: rgb(17, 9, 15);
}
QTreeView::branch:!has-children:!has-siblings:adjoins-item {
background-color: rgb(17, 9, 15);
}
QTreeView::branch:closed:has-children:has-siblings {
background-color: rgb(17, 9, 15);
}
QTreeView::branch:has-children:!has-siblings:closed {
background-color: rgb(17, 9, 15);
}
QTreeView::branch:open:has-children:has-siblings {
background-color: rgb(17, 9, 15);
}
QTreeView::branch:open:has-children:!has-siblings {
background-color: rgb(17, 9, 15);
}
QStatusBar {
background-color: rgb(17, 9, 15);
}
QStatusBar QLabel {
background-color: rgb(0, 138, 0);
color: rgb(240, 240, 240);
font: 35px "Segoe UI";
padding-top: -5px;
}