Put all colors into single xml file. Accessing colors is handled via the singleton class ColorScheme. The default scheme "bright.xml" holds the original colors. The scheme "dark.xml" is a start, but still a poor alternative. Color schemes can be switched via the View menu.
36 lines
627 B
CSS
36 lines
627 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;
|
|
}
|
|
|
|
QToolTip {
|
|
background-color: <color:tool_tip/background>;
|
|
color: <color:tool_tip/text>;
|
|
font-size: <setting:font_size>pt;
|
|
}
|