From 4aa4fa48f39d05f3b267ffd82447ced460a8b3ff Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 6 Apr 2020 22:54:06 -0500 Subject: [PATCH] Layout changes --- src/components/UI/CheckBox/CheckBox.css | 4 ++-- src/components/UI/DropDown/DropDown.css | 6 +++--- .../Configuration/ConfigurationItem/ConfigurationItem.css | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/UI/CheckBox/CheckBox.css b/src/components/UI/CheckBox/CheckBox.css index 1498bad..697cf50 100644 --- a/src/components/UI/CheckBox/CheckBox.css +++ b/src/components/UI/CheckBox/CheckBox.css @@ -68,9 +68,9 @@ label.CheckBoxLabel .CheckBoxCheckMark:after { top: 1px; width: 5px; height: 10px; - border: solid var(--heading_text_color); + border: solid var(--heading_other_text_color); border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); -} \ No newline at end of file +} diff --git a/src/components/UI/DropDown/DropDown.css b/src/components/UI/DropDown/DropDown.css index 5c7b489..a22f610 100644 --- a/src/components/UI/DropDown/DropDown.css +++ b/src/components/UI/DropDown/DropDown.css @@ -13,8 +13,8 @@ margin: 0; padding: 2px; border-radius: var(--border_radius); - background: rgba(10, 10, 20, 0.75); - border-color: rgba(10, 10, 20, 0.9); + background: var(--control_background); + border: none; color: var(--text_color); box-sizing: border-box; } @@ -54,4 +54,4 @@ .DropDownSelect:active, .DropDownSelect.active { cursor: pointer; -} \ No newline at end of file +} diff --git a/src/containers/Configuration/ConfigurationItem/ConfigurationItem.css b/src/containers/Configuration/ConfigurationItem/ConfigurationItem.css index f0e7396..2d17b7b 100644 --- a/src/containers/Configuration/ConfigurationItem/ConfigurationItem.css +++ b/src/containers/Configuration/ConfigurationItem/ConfigurationItem.css @@ -8,7 +8,7 @@ input.ConfigurationItemInput { margin: 0; padding: 2px; border-radius: var(--border_radius); - background: rgba(160, 160, 160, 0.1); + background: var(--control_background); border: none; box-shadow: none; outline: none; @@ -21,7 +21,7 @@ textarea.ConfigurationItemInput { margin: 0; padding: 2px; border-radius: var(--border_radius); - background: rgba(160, 160, 160, 0.1); + background: var(--control_background); border: none; box-shadow: none; outline: none;