/usr/share/lxqt/themes/ambiance/lxqt-runner.qss is in lxqt-common 0.11.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* Panel
*/
#panel {
background-color:qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #515048, stop:1 #3C3B37);
border: 1px solid #2b2b29;
padding: 2px;
}
/*
* Buttons
*/
QToolButton {
margin: 0px;
border: 0px solid transparent;
padding: 0px;
qproperty-iconSize: 24px;
}
QToolButton:hover {
padding: 2px;
}
QToolButton::menu-indicator {
image: none;
}
#closeButton {
qproperty-icon: url(lxqt-runner/clear.svg);
}
#actionButton {
qproperty-icon: url(lxqt-runner/navigation-menu.svg);
}
#commandEd {
border: 1px solid #2b2b29;
padding: 0px;
margin: 0px;
background: white;
color: #2b2b29;
selection-background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #f88657, stop:1 #eb7140);
selection-color: white;
}
#commandList {
border: 1px solid #2b2b29;
}
#commandList::item {
margin: 2px;
padding: 2px;
}
|