From 1951d834b3a88ad159a37940ef3be91bdeb233b7 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 10 Mar 2022 21:16:24 +0100 Subject: [PATCH] fixed another error, remove duplicates --- .../custom/gradido-custom/_custom-forms.scss | 4 +- frontend/src/assets/scss/gradido.scss | 50 ------------------- 2 files changed, 3 insertions(+), 51 deletions(-) diff --git a/frontend/src/assets/scss/custom/gradido-custom/_custom-forms.scss b/frontend/src/assets/scss/custom/gradido-custom/_custom-forms.scss index b0e686782..4fa437b38 100644 --- a/frontend/src/assets/scss/custom/gradido-custom/_custom-forms.scss +++ b/frontend/src/assets/scss/custom/gradido-custom/_custom-forms.scss @@ -19,7 +19,9 @@ $custom-control-indicator-checked-color: $component-active-color !default; $custom-control-indicator-checked-bg: $component-active-bg !default; $custom-control-indicator-checked-border-color: $component-active-border-color !default; $custom-control-indicator-checked-box-shadow: $custom-control-indicator-box-shadow !default; -$custom-control-indicator-checked-disabled-bg: rgb(theme-color("primary") 0.5) !default; + +// $custom-control-indicator-checked-disabled-bg: rgb(theme-color("primary") 0.5) !default; +$custom-control-indicator-checked-disabled-bg: theme-color("primary") !default; $custom-control-indicator-disabled-bg: $gray-200 !default; $custom-control-label-disabled-color: $gray-600 !default; $custom-checkbox-indicator-border-radius: $border-radius-sm !default; diff --git a/frontend/src/assets/scss/gradido.scss b/frontend/src/assets/scss/gradido.scss index 14eda9971..abb491206 100644 --- a/frontend/src/assets/scss/gradido.scss +++ b/frontend/src/assets/scss/gradido.scss @@ -208,53 +208,3 @@ a, .gradido-font-15rem { font-size: 1.5rem; } - -.gradido-custom-background { - background-color: #ebebeba3 !important; -} - -.gradido-max-width { - width: 100%; -} - -.gradido-width-300 { - width: 300px; -} - -.gradido-absolute { - position: absolute; -} - -.gradido-width-95-absolute { - width: 95%; - position: absolute; -} - -.gradido-width-96-absolute { - width: 96%; - position: absolute; -} - -.gradido-no-border-radius { - border-radius: 0; -} - -.gradido-no-border { - border: 0; -} - -.gradido-background-f1 { - background-color: #f1f1f1; -} - -.gradido-background-white { - background-color: #fff; -} - -.gradido-font-large { - font-size: large; -} - -.gradido-font-15rem { - font-size: 1.5rem; -}