Browse Source

feat(ui): grey out proxy settings if no proxy selected

This is a feature proposed in #2760.
Disabled port (QSpinBox) and address (QLineEdit) are greyed out if no proxy is selected.
reviewable/pr4356/r1
ezavod 8 years ago
parent
commit
77aa2e9252
No known key found for this signature in database
GPG Key ID: 5DFDD9A0D8E5A9B6
  1. 10
      ui/settings/mainContent.css

10
ui/settings/mainContent.css

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

Loading…
Cancel
Save