66 lines
1.4 KiB
CSS
66 lines
1.4 KiB
CSS
* {
|
|
font-size: <setting:font_size>px;
|
|
}
|
|
|
|
#search_box, #search_box * {
|
|
font-family: "<setting:font_name>";
|
|
font-size: <setting:font_size+2>px;
|
|
}
|
|
|
|
#search_bar {
|
|
background-color: transparent;
|
|
}
|
|
|
|
QWidget#search_box_container {
|
|
background: <color:search/field/background>;
|
|
border: none;
|
|
border-bottom-left-radius: 12px;
|
|
border-top-left-radius: 12px;
|
|
margin-left: 5px;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
QLineEdit#search_box {
|
|
background-color: transparent;
|
|
border: none;
|
|
color: <color:search/field/text>;
|
|
margin-left: 5px;
|
|
selection-background-color: <color:search/field/highlight>;
|
|
}
|
|
|
|
QWidget#search_box_highlight {
|
|
background-color: <color:search/field/highlight>;
|
|
border: none;
|
|
}
|
|
|
|
QAbstractItemView#search_box_popup {
|
|
background-color: <color:search/popup/background>;
|
|
border: none;
|
|
color: <color:search/popup/text>;
|
|
font-family: "<setting:font_name>";
|
|
margin: 8px 0 0;
|
|
min-height: 26px;
|
|
selection-background-color: <color:search/popup/highlight>;
|
|
}
|
|
|
|
#search_button, #home_button {
|
|
background: <color:search/button/normal>;
|
|
border: none;
|
|
border-radius: 12px;
|
|
background-position: 15px 5px;
|
|
width: 30px;
|
|
}
|
|
|
|
#search_button {
|
|
border-bottom-left-radius: 0px;
|
|
border-top-left-radius: 0px;
|
|
}
|
|
|
|
#search_button:hover, #home_button:hover {
|
|
background: <color:search/button/hover>;
|
|
}
|
|
|
|
#search_button:pressed, #home_button:pressed {
|
|
background: <color:search/button/press>;
|
|
}
|