From 6e5ad05ab0d33e42aa8887eba3042a5db69fa630 Mon Sep 17 00:00:00 2001 From: Bryant Date: Fri, 31 May 2013 12:33:08 -0700 Subject: [PATCH] Fixed the styling for disabled checkboxes. --- files/styles/style-dark.css | 8 ++++++++ files/styles/style-light.css | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/files/styles/style-dark.css b/files/styles/style-dark.css index 11ef7aa7c..e87f433a7 100644 --- a/files/styles/style-dark.css +++ b/files/styles/style-dark.css @@ -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; diff --git a/files/styles/style-light.css b/files/styles/style-light.css index 1081eeac4..7853ecc82 100644 --- a/files/styles/style-light.css +++ b/files/styles/style-light.css @@ -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; -- 2.22.0