Summary:
OneEleven sets background color for input fields without setting text color
Detailed Description:
I'm using a dark theme on my computer, where text is basically white on black.
When using CMSMS, the OneEleven theme sets the background color for input fields
and textareas to light grey, but it doesn't set foreground color, which results
in basically an unusable experience.
This can be easily corrected with a following patch, so please do:
--- admin/themes/OneEleven/css/style.css 2017-09-12 11:36:42.000000000 +0300
+++ admin/themes/OneEleven/css/style.css 2017-09-12 10:42:41.000000000 +0300
@@ -521,7 +521,8 @@
border: 1px solid #aaa;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
- background: #f0f0f0
+ background: #f0f0f0;
+ color: #000;
}
textarea {
resize: both;