-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlxqt-runner.qss
executable file
·80 lines (61 loc) · 1.26 KB
/
lxqt-runner.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
/*
* Panel
*/
#panel {
background:rgba(47, 52, 63, 95%);
border: 1px solid rgba(39, 44, 53, 85%);
}
/*
* Search line style
/*
QLineEdit {
background: rgb(64, 69, 82);
border: 1px solid rgb(80, 140, 212);
border-radius: 3px;
padding: 4px;
margin-button: 2px;
margin-right: 2px;
margin-left: 2px;
color: #D2D8E0;
}
/*
* Buttons
*/
QToolButton::menu-indicator {
image: none;
}
#closeButton {
qproperty-icon: url(lxqt-runner/close.svg);
margin: 1px;
}
#closeButton:hover{
border: 0px solid rgba(0, 0, 0, 50%);
qproperty-icon: url(lxqt-runner/close-hover.svg);
}
#actionButton {
qproperty-icon: url(lxqt-runner/down.svg);
color: rgba(41, 41, 41, 0%);
margin: 2px;
}
#actionButton:hover{
qproperty-icon: url(lxqt-runner/down-hover.svg);
border: 0px solid rgba(0, 0, 0, 50%);
margin: 2px;
}
/*
* Search results (For some reason the #commandList does no take the styles, just the background and the border can be changed)
*/
QListView {
border: 1px solid rgba(39, 44, 53, 85%);
background:rgba(64, 69, 82, 85%);
}
QListView::item:alternate {
}
QListView::item:selected {
}
QListView::item:selected:!active {
}
QListView::item:selected:active {
}
QListView::item:hover {
}