1
0
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:
sudden6 2017-05-02 20:34:55 +02:00
commit 4b0a43b789
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
7 changed files with 31 additions and 21 deletions

View File

@ -13,7 +13,7 @@ QRadioButton::indicator
height: 10px; height: 10px;
} }
QRadioButton::indicator::unchecked QRadioButton::indicator:unchecked
{ {
image: url(:/ui/emoticonWidget/dot_page.svg); image: url(:/ui/emoticonWidget/dot_page.svg);
} }
@ -28,7 +28,7 @@ QRadioButton::indicator:unchecked:pressed
image: url(:/ui/emoticonWidget/dot_page_hover.svg); image: url(:/ui/emoticonWidget/dot_page_hover.svg);
} }
QRadioButton::indicator::checked QRadioButton::indicator:checked
{ {
image: url(:/ui/emoticonWidget/dot_page_current.svg); image: url(:/ui/emoticonWidget/dot_page_current.svg);
} }

View File

@ -53,6 +53,6 @@ QLabel, QCheckBox, QProgressBar {
color: black; color: black;
} }
QCheckBox::disabled { QCheckBox:disabled {
color: gray; color: gray;
} }

View File

@ -39,6 +39,11 @@ QSpinBox
background: white; background: white;
} }
QSpinBox:disabled
{
background: lightGrey;
}
QPushButton QPushButton
{ {
background: white; background: white;
@ -66,6 +71,11 @@ QLineEdit
background-color: white; background-color: white;
} }
QLineEdit:disabled
{
background-color: lightGrey;
}
QTabWidget QTabWidget
{ {
background-color: white; background-color: white;