From 51739672c3aea0553f364766edfad3975f83b52d Mon Sep 17 00:00:00 2001 From: Scott Bishel Date: Wed, 11 Aug 2021 02:07:49 -0600 Subject: [PATCH] fix css for theme name changes (#926) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jesús Espino --- .../src/components/properties/dateRange/dateRange.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/webapp/src/components/properties/dateRange/dateRange.scss b/webapp/src/components/properties/dateRange/dateRange.scss index db4b352b9..88962c852 100644 --- a/webapp/src/components/properties/dateRange/dateRange.scss +++ b/webapp/src/components/properties/dateRange/dateRange.scss @@ -57,7 +57,7 @@ cursor: pointer; &:hover { - background: rgba(var(--button-bg), 0.08); + background: rgba(var(--button-bg-rgb), 0.08); } > * { @@ -140,12 +140,12 @@ border-bottom-right-radius: 50% !important; } .DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) { - background-color: rgb(var(--button-bg));; - color: rgba(var(--button-fg), 0.5); + background-color: rgb(var(--button-bg-rgb));; + color: rgba(var(--button-color-rgb), 0.5); } .DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) { - color: rgb(var(--button-bg));; - background-color: rgba(var(--button-bg), 0.2); + color: rgb(var(--button-bg-rgb));; + background-color: rgba(var(--button-bg-rgb), 0.2); } .DayPicker:not(.DayPicker--interactionDisabled)