/usr/share/lxqt/themes/dark/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 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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | /*
* Panel
*/
#panel {
background:rgba(0, 0, 0, 50%);
border: 1px solid rgba(0, 0, 0, 50%);
}
/*
* Buttons
*/
QToolButton::menu-indicator {
image: none;
}
#closeButton {
qproperty-icon: url(lxqt-runner/close.svg);
margin: 2px;
}
#closeButton:hover {
border: 1px solid rgba(0, 0, 0, 50%);
background: rgba(255, 255, 255, 20%);
}
#actionButton {
qproperty-icon: url(lxqt-runner/down-arrow.svg);
color: rgba(41, 41, 41, 0%);
margin: 2px;
}
#actionButton:hover {
border: 1px solid rgba(0, 0, 0, 50%);
background: rgba(255, 255, 255, 20%);
}
#actionButton:pressed {
border: 1px solid rgba(0, 0, 0, 50%);
background: rgba(255, 255, 255, 20%);
}
/*
*Search line-edit
*/
QLineEdit {
background: black;
border: 2px solid black;
border-radius: 3px;
padding: 6px;
margin-bottom: 1px;
color: white;
selection-background-color: #640b0c;
}
/*
*Search results list
*/
/* The list doesn't seem to be stylable completely; so, we left it to the widget style. */
#commandList {
border: none;
/*background: rgba(0, 0, 0, 50%);
alternate-background-color: #3c3c3c;
color: white;*/
}
/*#commandList::item {
}
#commandList::item:selected {
}
#commandList::item::hover {
}*/
/*
* Menu
*/
QMenu {
margin: 0px;
padding: 2px;
border: 1px solid #323232;
border-bottom-color: black;
border-right-color: black;
background: black;
/*qproperty-icon: url(mainmenu.svg);*/
color: white;
}
QMenu::icon {
background-color: transparent;
border: 20px;
}
QMenu QToolButton {
background-color: #3c3c3c;
padding: 5px;
border: none;
color: white;
font: bold italic;
}
QMenu::item {
border: 10px solid transparent;
border-top-width: 1px;
border-bottom-width: 1px;
border-right-width: 5px;
padding: 6px 40px 6px 24px;
background: transparent;
color: white;
}
QMenu::item:selected {
border: 10px solid #640b0c;
border-top-width: 1px;
border-bottom-width: 1px;
border-right-width: 5px;
background: #640b0c;
color: white;
}
QMenu::item:selected:disabled {
background-color: palette(text);
}
QMenu::item:disabled {
color: #6D6D6D;
}
QMenu::right-arrow {
image: url(arrow-right.svg);
}
QMenu::indicator {
width: 13px;
height: 13px;
}
QMenu::indicator:non-exclusive:unchecked {
image: url(unchecked.svg);
}
QMenu::indicator:non-exclusive:checked {
image: url(checked.svg);
}
|