[Rt-commit] rt branch, 5.0/fix-bg-color-current-value-dark-theme, created. rt-5.0.0beta1-1-g4c476bd27b
Blaine Motsinger
blaine at bestpractical.com
Mon Jun 8 18:28:36 EDT 2020
The branch, 5.0/fix-bg-color-current-value-dark-theme has been created
at 4c476bd27b07a7df2729707282181dd08b0d4279 (commit)
- Log -----------------------------------------------------------------
commit 4c476bd27b07a7df2729707282181dd08b0d4279
Author: Blaine Motsinger <blaine at bestpractical.com>
Date: Mon Jun 8 17:22:34 2020 -0500
Fix background color for current-value dark theme
This commit fixes the current-value.form-control background color
to match the main background color for dark theme.
Because we have a rule for ".darkmode .form-control" to apply to
many different types of inputs, this more specific rule is needed to
ensure the non-input form-control elements don't also have the same
color.
diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 3874c165ab..5f35a5e6de 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -262,6 +262,10 @@
border-top: 1px solid #515151;
}
+.darkmode span.current-value.form-control {
+ background: #2C3539 !important;
+}
+
.darkmode .form-control,
.darkmode .selectize-input {
background: #323D42 !important;
-----------------------------------------------------------------------
More information about the rt-commit
mailing list