30 lines
499 B
CSS
30 lines
499 B
CSS
#refresh_bar {
|
|
background: transparent;
|
|
}
|
|
|
|
QPushButton {
|
|
background: <color:search/button/normal>;
|
|
border: none;
|
|
height: 30px;
|
|
width: 30px;
|
|
}
|
|
|
|
QPushButton:hover, QPushButton:checked {
|
|
background: <color:search/button/hover>;
|
|
}
|
|
|
|
QPushButton:pressed {
|
|
background: <color:search/button/press>;
|
|
}
|
|
|
|
#refresh_button {
|
|
border-bottom-left-radius: 12px;
|
|
border-top-left-radius: 12px;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
#auto_refresh_button {
|
|
border-bottom-right-radius: 12px;
|
|
border-top-right-radius: 12px;
|
|
}
|