Browse Source

Increase contrast for readonly form controls in dark theme (fixes #2820)

Increase the dark theme color value for text in readonly form controls for better contrast between text and background.
wweich 9 years ago
parent
commit
1875f7287e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/dark/assets/css/overrides.css

+ 1 - 1
gui/dark/assets/css/overrides.css

@@ -437,7 +437,7 @@ code.ng-binding{
 }
 
 .well, .form-control[readonly="readonly"] { /* read-only fields*/
-    color: #444 !important;
+    color: #666 !important;
     border-color: #444 !important;
     background-color: #111 !important;
 }