1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/ui/settings/mainContent.css

216 lines
2.8 KiB
CSS
Raw Normal View History

2014-10-15 23:08:31 +08:00
QWidget
{
color: black;
2014-10-15 23:08:31 +08:00
font: @big;
}
QTextEdit
{
border-color: @lightGrey;
border-style: solid;
border-width: 1px 0 1px 1px;
background: white;
border: 1px solid #c4c1bd;
}
2014-10-20 20:26:49 +08:00
QListWidget
{
background: white;
}
QMessageBox
{
background: white;
}
2014-10-15 23:08:31 +08:00
QCheckBox
{
background: white;
color: black;
}
QCheckBox:disabled
{
color: grey;
}
QSpinBox
{
background: white;
}
QPushButton
{
background: white;
}
2014-10-15 23:08:31 +08:00
QGroupBox
{
color: black;
background-color: white;
2014-10-15 23:08:31 +08:00
font: @bigBold;
}
QComboBox
{
color: black;
background: white;
}
QComboBox QAbstractItemView {
background: white;
}
2014-10-16 23:25:48 +08:00
QLineEdit
{
background-color: white;
}
QTabWidget
{
2014-10-16 23:25:48 +08:00
background-color: white;
}
QTabBar
{
background-color: white;
}
2014-10-16 23:25:48 +08:00
QScrollArea
{
background-color: white;
2014-11-12 19:42:26 +08:00
background: transparent;
}
QScrollArea > QWidget > QWidget
{
2015-03-30 22:14:30 +08:00
background: transparent;
}
2015-03-30 22:14:30 +08:00
QScrollArea::corner
{
background: white;
border: none;
}
QScrollBar:vertical
{
background: transparent;
width: 12px;
margin-top: 2px;
margin-bottom: 2px;
}
2015-03-30 22:14:30 +08:00
QScrollBar::handle:vertical
{
background: #d1d1d1;
min-height: 20px;
border-radius: 3px;
margin-left: 2px;
}
2015-03-30 22:14:30 +08:00
QScrollBar::handle:vertical:hover
{
background: #e3e3e3;
}
2015-03-30 22:14:30 +08:00
QScrollBar::handle:vertical:pressed
{
background: #b1b1b1;
}
2015-03-30 22:14:30 +08:00
QScrollBar::add-line:vertical
{
background: white;
height: 0px;
subcontrol-position: bottom;
subcontrol-origin: margin;
}
2015-03-30 22:14:30 +08:00
QScrollBar::sub-line:vertical
{
background: white;
height: 0px;
subcontrol-position: top;
subcontrol-origin: margin;
}
2015-03-30 22:14:30 +08:00
QScrollBar:QScrollBar::down-arrow:vertical
{
width: 10;
height: 10px;
background: white;
}
2015-03-30 22:14:30 +08:00
QScrollBar:QScrollBar::up-arrow:vertical
{
width: 10px;
height: 10px;
background: white;
}
2015-03-30 22:14:30 +08:00
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
{
background: none;
}
2015-03-30 22:14:30 +08:00
QScrollBar:horizontal
{
background: white;
height: 10px;
margin: 0 2px 0 2px;
}
2015-03-30 22:14:30 +08:00
QScrollBar::handle:horizontal
{
background: #d1d1d1;
min-width: 20px;
border-radius: 2px;
}
2015-03-30 22:14:30 +08:00
QScrollBar::handle:horizontal:hover
{
background: #e3e3e3;
}
2015-03-30 22:14:30 +08:00
QScrollBar::handle:horizontal:pressed
{
background: #b1b1b1;
}
2015-03-30 22:14:30 +08:00
QScrollBar::add-line:horizontal
{
background: white;
width: 0px;
subcontrol-position: right;
subcontrol-origin: margin;
}
2015-03-30 22:14:30 +08:00
QScrollBar::sub-line:horizontal
{
background: white;
width: 0px;
subcontrol-position: left;
subcontrol-origin: margin;
}
2015-03-30 22:14:30 +08:00
QScrollBar:QScrollBar::down-arrow:horizontal
{
width: 10;
height: 10px;
background: white;
}
2015-03-30 22:14:30 +08:00
QScrollBar:QScrollBar::up-arrow:horizontal
{
width: 10px;
height: 10px;
background: white;
}
2015-03-30 22:14:30 +08:00
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
{
background: none;
}