You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
2.4 KiB
150 lines
2.4 KiB
/*
|
|
* 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);
|
|
}
|
|
|
|
|