mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
71d1fa6f24
Original work by tox-user. The default theme is now placed in a different path: - C:\users\%username%\AppData\roaming\qtox\themes - for Windows - ~/Library/Application Support/qtox/themes - for MacOS - ~/.config/qtox/themes - for other Unix systems including GNU/Linux Thanks to that it's no longer required to recompile the program to modify the theme. In addition to that the default theme is also included as a resource. If the theme folder or some file inside it is missing, qTox will load it from resource.
213 lines
2.9 KiB
CSS
213 lines
2.9 KiB
CSS
QTextEdit
|
|
{
|
|
border-color: @lightGrey;
|
|
border-style: solid;
|
|
border-width: 1px 0 1px 1px;
|
|
background: white;
|
|
border: 1px solid #c4c1bd;
|
|
}
|
|
|
|
QListWidget
|
|
{
|
|
background-color: white;
|
|
}
|
|
|
|
QMessageBox
|
|
{
|
|
background-color: white;
|
|
}
|
|
|
|
QCheckBox
|
|
{
|
|
color: black;
|
|
}
|
|
|
|
QCheckBox:disabled
|
|
{
|
|
color: grey;
|
|
}
|
|
|
|
QSpinBox
|
|
{
|
|
background-color: white;
|
|
}
|
|
|
|
QSpinBox:disabled
|
|
{
|
|
background-color: lightGrey;
|
|
}
|
|
|
|
QGroupBox
|
|
{
|
|
color: black;
|
|
background-color: white;
|
|
font: @bigBold;
|
|
}
|
|
|
|
QComboBox
|
|
{
|
|
color: black;
|
|
background-color: white;
|
|
}
|
|
|
|
QComboBox QAbstractItemView {
|
|
background-color: white;
|
|
}
|
|
|
|
QLineEdit
|
|
{
|
|
background-color: white;
|
|
}
|
|
|
|
QLineEdit:disabled
|
|
{
|
|
background-color: lightGrey;
|
|
}
|
|
|
|
QTabWidget
|
|
{
|
|
background-color: white;
|
|
}
|
|
|
|
QScrollArea
|
|
{
|
|
background-color: white;
|
|
}
|
|
|
|
QScrollArea > QWidget > QWidget
|
|
{
|
|
background: transparent;
|
|
}
|
|
|
|
QScrollArea::corner
|
|
{
|
|
background-color: white;
|
|
border: none;
|
|
}
|
|
|
|
QScrollBar:vertical
|
|
{
|
|
background: transparent;
|
|
width: 12px;
|
|
margin-top: 2px;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
QScrollBar::handle:vertical
|
|
{
|
|
background-color: #d1d1d1;
|
|
min-height: 20px;
|
|
border-radius: 3px;
|
|
margin-left: 2px;
|
|
}
|
|
|
|
QScrollBar::handle:vertical:hover
|
|
{
|
|
background-color: #e3e3e3;
|
|
}
|
|
|
|
QScrollBar::handle:vertical:pressed
|
|
{
|
|
background-color: #b1b1b1;
|
|
}
|
|
|
|
QScrollBar::add-line:vertical
|
|
{
|
|
background-color: white;
|
|
height: 0px;
|
|
subcontrol-position: bottom;
|
|
subcontrol-origin: margin;
|
|
}
|
|
|
|
QScrollBar::sub-line:vertical
|
|
{
|
|
background-color: white;
|
|
height: 0px;
|
|
subcontrol-position: top;
|
|
subcontrol-origin: margin;
|
|
}
|
|
|
|
QScrollBar:QScrollBar::down-arrow:vertical
|
|
{
|
|
width: 10;
|
|
height: 10px;
|
|
background-color: white;
|
|
}
|
|
|
|
QScrollBar:QScrollBar::up-arrow:vertical
|
|
{
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: white;
|
|
}
|
|
|
|
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
|
|
{
|
|
background: none;
|
|
}
|
|
|
|
QScrollBar:horizontal
|
|
{
|
|
background-color: white;
|
|
height: 10px;
|
|
margin: 0 2px 0 2px;
|
|
}
|
|
|
|
QScrollBar::handle:horizontal
|
|
{
|
|
background-color: #d1d1d1;
|
|
min-width: 20px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
QScrollBar::handle:horizontal:hover
|
|
{
|
|
background-color: #e3e3e3;
|
|
}
|
|
|
|
QScrollBar::handle:horizontal:pressed
|
|
{
|
|
background-color: #b1b1b1;
|
|
}
|
|
|
|
QScrollBar::add-line:horizontal
|
|
{
|
|
background-color: white;
|
|
width: 0px;
|
|
subcontrol-position: right;
|
|
subcontrol-origin: margin;
|
|
}
|
|
|
|
QScrollBar::sub-line:horizontal
|
|
{
|
|
background-color: white;
|
|
width: 0px;
|
|
subcontrol-position: left;
|
|
subcontrol-origin: margin;
|
|
}
|
|
|
|
QScrollBar:QScrollBar::down-arrow:horizontal
|
|
{
|
|
width: 10;
|
|
height: 10px;
|
|
background-color: white;
|
|
}
|
|
|
|
QScrollBar:QScrollBar::up-arrow:horizontal
|
|
{
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: white;
|
|
}
|
|
|
|
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
|
|
{
|
|
background: none;
|
|
}
|
|
|
|
QRadioButton
|
|
{
|
|
background: white;
|
|
color: black;
|
|
}
|