mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge pull request #4356
ezavod (3): refactor(ui): removed trailing whitespaces feat(ui): grey out proxy settings if no proxy selected fix(ui): fixed typos of pseudo-states in stylesheets
This commit is contained in:
commit
4b0a43b789
|
@ -13,7 +13,7 @@ QRadioButton::indicator
|
|||
height: 10px;
|
||||
}
|
||||
|
||||
QRadioButton::indicator::unchecked
|
||||
QRadioButton::indicator:unchecked
|
||||
{
|
||||
image: url(:/ui/emoticonWidget/dot_page.svg);
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ QRadioButton::indicator:unchecked:pressed
|
|||
image: url(:/ui/emoticonWidget/dot_page_hover.svg);
|
||||
}
|
||||
|
||||
QRadioButton::indicator::checked
|
||||
QRadioButton::indicator:checked
|
||||
{
|
||||
image: url(:/ui/emoticonWidget/dot_page_current.svg);
|
||||
}
|
||||
|
|
|
@ -53,6 +53,6 @@ QLabel, QCheckBox, QProgressBar {
|
|||
color: black;
|
||||
}
|
||||
|
||||
QCheckBox::disabled {
|
||||
QCheckBox:disabled {
|
||||
color: gray;
|
||||
}
|
||||
|
|
|
@ -39,6 +39,11 @@ QSpinBox
|
|||
background: white;
|
||||
}
|
||||
|
||||
QSpinBox:disabled
|
||||
{
|
||||
background: lightGrey;
|
||||
}
|
||||
|
||||
QPushButton
|
||||
{
|
||||
background: white;
|
||||
|
@ -66,6 +71,11 @@ QLineEdit
|
|||
background-color: white;
|
||||
}
|
||||
|
||||
QLineEdit:disabled
|
||||
{
|
||||
background-color: lightGrey;
|
||||
}
|
||||
|
||||
QTabWidget
|
||||
{
|
||||
background-color: white;
|
||||
|
|
Loading…
Reference in New Issue
Block a user