mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-21 17:45:44 -05:00
36 lines
776 B
Plaintext
36 lines
776 B
Plaintext
/* DEFAULT theme for porymap */
|
|
|
|
/*
|
|
For newer versions of macOS at least, icons
|
|
using Qt::ArrowType do not change color when
|
|
disabled, so we specify the color change ourselves.
|
|
*/
|
|
QToolButton:disabled {
|
|
color: gray;
|
|
}
|
|
QComboBox:disabled {
|
|
color: gray;
|
|
}
|
|
QAbstractSpinBox:disabled {
|
|
color: gray;
|
|
}
|
|
|
|
/* Qt doesn't change the style of disabled sliders, so we do it ourselves */
|
|
QSlider::groove:horizontal:disabled {
|
|
border: 1px solid gray;
|
|
border-radius: 3px;
|
|
height: 2px;
|
|
background: none;
|
|
}
|
|
QSlider::sub-page:horizontal:disabled {
|
|
background: #B1B1B1;
|
|
}
|
|
QSlider::handle:horizontal:disabled {
|
|
border: 1px solid #444444;
|
|
border-radius: 3px;
|
|
width: 10px;
|
|
height: 9px;
|
|
margin: -5px -1px;
|
|
background: #5C5C5C;
|
|
}
|