Browse Source

Fixed the styling for disabled checkboxes.

QGC4.4
Bryant 12 years ago
parent
commit
6e5ad05ab0
  1. 8
      files/styles/style-dark.css
  2. 8
      files/styles/style-light.css

8
files/styles/style-dark.css

@ -32,6 +32,14 @@ QCheckBox::indicator:checked { @@ -32,6 +32,14 @@ QCheckBox::indicator:checked {
background-color: #379AC3;
}
QCheckBox::indicator:disabled {
border-color: #555;
}
QCheckBox::indicator:disabled:checked {
background-color: #333;
}
QComboBox {
border: 1px solid #777;
border-radius: 2px;

8
files/styles/style-light.css

@ -32,6 +32,14 @@ QCheckBox::indicator:checked { @@ -32,6 +32,14 @@ QCheckBox::indicator:checked {
background-color: #379AC3;
}
QCheckBox::indicator:disabled {
border-color: #555;
}
QCheckBox::indicator:disabled:checked {
background-color: #AAA;
}
QComboBox {
border: 1px solid #777;
border-radius: 2px;

Loading…
Cancel
Save