-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMinimalistDark.qss
96 lines (77 loc) · 1.76 KB
/
MinimalistDark.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
/*
* Check http://doc.qt.io/qt-5/stylesheet-syntax.html especially the subtopics:
* The Style Sheet Syntax (http://doc.qt.io/qt-5/stylesheet-syntax.html)
* Qt Style Sheets Reference (http://doc.qt.io/qt-5/stylesheet-reference.html)
*/
* {
border: none;
color : #AFB8C5;
background-color: transparent;
}
#frame {
border-radius: 3px;
background-color: #C02B2B2B;
/* Workaround for Qt to get fixed size button*/
min-width:640px;
max-width:640px;
}
#inputLine {
padding: 10px;
border-radius: 2px;
font-size: 36px;
selection-color: #383C4A;
selection-background-color: #AFB8C5;
background-color: transparent;
}
#settingsButton {
color : #ffffff;
background-color: #383C4A;
padding: 4px;
/* Respect the frame border */
margin: 6px 6px 0px 0px;
border-top-right-radius: 6px;
border-bottom-left-radius: 10px;
/* Workaround for Qt to get fixed size button*/
min-width:0px;
min-height:0px;
max-width:0px;
max-height:0px;
}
/********** ListViews **********/
QListView::item:selected {
background: #A0404552;
}
QListView::item{
padding:10px;
}
QListView QScrollBar:vertical {
width: 5px;
background: transparent;
}
QListView QScrollBar::handle:vertical {
background: transparent;
min-height: 24px;
}
QListView QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical,
QListView QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical,
QListView QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
border: 0px;
width: 0px;
height: 0px;
background: transparent;
}
/********** actionList **********/
QListView#actionList {
font-size: 20px;
}
QListView#actionList::item{
height:28px;
}
/********** proposalList **********/
QListView#proposalList {
icon-size: 44px;
font-size: 26px;
}
QListView#proposalList::item{
height:48px;
}