theme updated
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 252 B |
Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 249 B |
Before Width: | Height: | Size: 240 B After Width: | Height: | Size: 240 B |
Before Width: | Height: | Size: 846 B After Width: | Height: | Size: 903 B |
Before Width: | Height: | Size: 646 B After Width: | Height: | Size: 703 B |
119
3rdparty/dark_style_sheet/qdarkstyle/style.qss
vendored
@ -59,11 +59,16 @@ QCheckBox
|
|||||||
outline: none;
|
outline: none;
|
||||||
color: #eff0f1;
|
color: #eff0f1;
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox::item{
|
||||||
|
background-color: #404040;
|
||||||
}
|
}
|
||||||
|
|
||||||
QCheckBox:disabled
|
QCheckBox:disabled
|
||||||
{
|
{
|
||||||
color: #2b2b2b;
|
color: #494949;
|
||||||
}
|
}
|
||||||
|
|
||||||
QCheckBox::indicator{
|
QCheckBox::indicator{
|
||||||
@ -72,6 +77,64 @@ QCheckBox::indicator{
|
|||||||
color: #222222;
|
color: #222222;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QCheckBox::indicator:unchecked
|
||||||
|
{
|
||||||
|
image: url(:/qss_icons/rc/checkbox_unchecked.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox::indicator:unchecked:hover,
|
||||||
|
QCheckBox::indicator:unchecked:focus,
|
||||||
|
QCheckBox::indicator:unchecked:pressed,
|
||||||
|
QGroupBox::indicator:unchecked:hover,
|
||||||
|
QGroupBox::indicator:unchecked:focus,
|
||||||
|
QGroupBox::indicator:unchecked:pressed
|
||||||
|
{
|
||||||
|
border: none;
|
||||||
|
image: url(:/qss_icons/rc/checkbox_unchecked_focus.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox::indicator:checked
|
||||||
|
{
|
||||||
|
image: url(:/qss_icons/rc/checkbox_checked.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox::indicator:checked:hover,
|
||||||
|
QCheckBox::indicator:checked:focus,
|
||||||
|
QCheckBox::indicator:checked:pressed,
|
||||||
|
QGroupBox::indicator:checked:hover,
|
||||||
|
QGroupBox::indicator:checked:focus,
|
||||||
|
QGroupBox::indicator:checked:pressed
|
||||||
|
{
|
||||||
|
border: none;
|
||||||
|
image: url(:/qss_icons/rc/checkbox_checked_focus.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QCheckBox::indicator:indeterminate
|
||||||
|
{
|
||||||
|
image: url(:/qss_icons/rc/checkbox_indeterminate.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox::indicator:indeterminate:focus,
|
||||||
|
QCheckBox::indicator:indeterminate:hover,
|
||||||
|
QCheckBox::indicator:indeterminate:pressed
|
||||||
|
{
|
||||||
|
image: url(:/qss_icons/rc/checkbox_indeterminate_focus.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox::indicator:checked:disabled,
|
||||||
|
QGroupBox::indicator:checked:disabled
|
||||||
|
{
|
||||||
|
image: url(:/qss_icons/rc/checkbox_checked_disabled.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox::indicator:unchecked:disabled,
|
||||||
|
QGroupBox::indicator:unchecked:disabled
|
||||||
|
{
|
||||||
|
image: url(:/qss_icons/rc/checkbox_unchecked_disabled.png);
|
||||||
|
}
|
||||||
|
|
||||||
QGroupBox::indicator
|
QGroupBox::indicator
|
||||||
{
|
{
|
||||||
width: 18px;
|
width: 18px;
|
||||||
@ -94,12 +157,54 @@ QRadioButton:disabled
|
|||||||
{
|
{
|
||||||
color: #2b2b2b;
|
color: #2b2b2b;
|
||||||
}
|
}
|
||||||
|
|
||||||
QRadioButton::indicator
|
QRadioButton::indicator
|
||||||
{
|
{
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QRadioButton::indicator:unchecked
|
||||||
|
{
|
||||||
|
image: url(:/qss_icons/rc/radio_unchecked.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QRadioButton::indicator:unchecked:hover,
|
||||||
|
QRadioButton::indicator:unchecked:focus,
|
||||||
|
QRadioButton::indicator:unchecked:pressed
|
||||||
|
{
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
image: url(:/qss_icons/rc/radio_unchecked_focus.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QRadioButton::indicator:checked
|
||||||
|
{
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
image: url(:/qss_icons/rc/radio_checked.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QRadioButton::indicator:checked:hover,
|
||||||
|
QRadioButton::indicator:checked:focus,
|
||||||
|
QRadioButton::indicator:checked:pressed
|
||||||
|
{
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
image: url(:/qss_icons/rc/radio_checked_focus.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QRadioButton::indicator:checked:disabled
|
||||||
|
{
|
||||||
|
outline: none;
|
||||||
|
image: url(:/qss_icons/rc/radio_checked_disabled.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
QRadioButton::indicator:unchecked:disabled
|
||||||
|
{
|
||||||
|
image: url(:/qss_icons/rc/radio_unchecked_disabled.png);
|
||||||
|
}
|
||||||
|
|
||||||
QMenuBar
|
QMenuBar
|
||||||
{
|
{
|
||||||
background-color: #2f2f2f;
|
background-color: #2f2f2f;
|
||||||
@ -207,8 +312,8 @@ QMenu::right-arrow {
|
|||||||
|
|
||||||
QWidget:disabled
|
QWidget:disabled
|
||||||
{
|
{
|
||||||
color: #454545;
|
color: #7a7a7a;
|
||||||
background-color: #383838;
|
background-color: #404040;
|
||||||
}
|
}
|
||||||
|
|
||||||
QAbstractItemView
|
QAbstractItemView
|
||||||
@ -469,8 +574,8 @@ QFrame
|
|||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-top: 1px solid #2b2b2b;
|
border-top: 1px solid #2b2b2b;
|
||||||
border-left: 1px solid #2b2b2b;
|
border-left: 1px solid #2b2b2b;
|
||||||
border-bottom: 1px solid #767676;
|
border-bottom: 1px solid #494949;
|
||||||
border-right: 1px solid #767676;
|
border-right: 1px solid #494949;
|
||||||
}
|
}
|
||||||
|
|
||||||
QFrame[frameShape="0"]
|
QFrame[frameShape="0"]
|
||||||
@ -866,8 +971,8 @@ QTreeView, QListView
|
|||||||
{
|
{
|
||||||
border-top: 1px solid #2b2b2b;
|
border-top: 1px solid #2b2b2b;
|
||||||
border-left: 1px solid #2b2b2b;
|
border-left: 1px solid #2b2b2b;
|
||||||
border-bottom: 1px solid #767676;
|
border-bottom: 1px solid #494949;
|
||||||
border-right: 1px solid #767676;
|
border-right: 1px solid #494949;
|
||||||
background-color: #404040;
|
background-color: #404040;
|
||||||
}
|
}
|
||||||
|
|
||||||
|