-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCyberpunk.qss
103 lines (82 loc) · 2.27 KB
/
Cyberpunk.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
97
98
99
100
101
102
103
/*
* author: Manuel Schneider <https://github.com/ManuelSchneid3r>
*
* 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 : #fff;
background-color: #002b36;
}
#frame {
padding: 6px;
/* border-radius: 2px; */
background-color: #061a40;
border: 4px solid #f4225a;
/* Workaround for Qt to get fixed size button*/
min-width:640px;
max-width:640px;
}
#inputLine {
padding: 2px;
border-radius: 2px;
font-size: 36px;
selection-color: #002b36;
selection-background-color: #93a1a1;
background-color: #003559;
}
#settingsButton {
color : #2aa198;
background-color: #002b36;
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:13px;
min-height:13px;
max-width:13px;
max-height:13px;
}
/********** ListViews **********/
QListView {
background: transparent;
selection-color: #00b8ff;
}
QListView::item:selected {
background: qlineargradient(x1:0, x2:1, stop:0.0 #202aa198, stop:0.5 #102aa198, stop:1.0 #202aa198 );
}
QListView QScrollBar:vertical {
width: 5px;
background: transparent;
}
QListView QScrollBar::handle:vertical {
background: #2aa198;
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;
}
/********** resultsList **********/
QListView#resultsList {
icon-size: 44px;
font-size: 26px;
}
QListView#resultsList::item{
height:48px;
}