From 6cacbab98a7d1cdb8f9e89e99b18e3825370e3a9 Mon Sep 17 00:00:00 2001 From: tkleinke Date: Tue, 11 Feb 2025 17:29:15 +0100 Subject: [PATCH] Adjust bg-info color --- desktop/src/app/components/buttons.scss | 8 ++++++-- desktop/src/app/components/variables.scss | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/desktop/src/app/components/buttons.scss b/desktop/src/app/components/buttons.scss index eb2293a49c..e0742bacf5 100644 --- a/desktop/src/app/components/buttons.scss +++ b/desktop/src/app/components/buttons.scss @@ -195,11 +195,15 @@ category-switcher-button { .btn-info { color: white !important; - background-color: #17a2b8; - border-color: #17a2b8; + background-color: $info-button-color; + border-color: $info-button-color; &:hover, &:active { background-color: #138496 !important; border-color: #138496 !important; } } + +.bg-info { + background-color: $info-button-color !important; +} diff --git a/desktop/src/app/components/variables.scss b/desktop/src/app/components/variables.scss index c3adb4f855..dd0d71c179 100644 --- a/desktop/src/app/components/variables.scss +++ b/desktop/src/app/components/variables.scss @@ -9,6 +9,7 @@ $primary: #37588e !default; $primary-button-color: #5572a1; $green-button-color: #198754; $red-button-color: #e00000; +$info-button-color: #17a2b8; $item-height: 58px; $item-padding-top: 8px;