forked from vertcoin-project/electrum-vtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.qss
85 lines (70 loc) · 1.35 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
* {
font-family: "Source Sans Pro";
}
*[tab="true"] {
background-color: white;
}
QPushButton,
QLineEdit,
QComboBox,
QComboBox::drop-down,
QHeaderView::section {
/* flat */
border: 1px solid #e7eaed;
border-radius: 0px;
}
QComboBox::down-arrow {
image: url(:icons/down_arrow.png);
}
QPushButton {
padding: 5px 15px 5px 15px;
outline: none;
}
QPushButton[primary="true"] {
background-color: #6faa5d;
color: white;
}
StatusBarButton {
border: none;
}
QHeaderView::section {
background-color: #e7eaed;
}
QHeaderView::down-arrow {
image: url(:icons/down_arrow.png);
}
QHeaderView::up-arrow {
image: url(:icons/up_arrow.png);
}
QTreeView {
background-color: white;
}
QTreeView::item:selected,
QTreeView::branch::selected {
background-color: #6faa5d;
}
QSlider::groove:horizontal {
border: 1px solid #565a5e;
height: 4px;
background: #565a5e;
margin: 0px;
border-radius: 2px;
}
QSlider::handle:horizontal {
background: white;
border: 1px solid #d7dadd;
width: 12px;
height: 12px;
margin: -6px 0;
border-radius: 7px;
}
QSlider::add-page:horizontal {
border: 1px solid rgb(30, 24, 43);
background: rgb(30, 24, 43);
border-radius: 2px;
}
QSlider::sub-page:horizontal {
border: 1px solid #6faa5d;
background: #6faa5d;
border-radius: 2px;
}