From d6531e8dec20792ea4f883653e522636caef42b2 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Thu, 30 Jan 2025 10:30:53 +0100
Subject: [PATCH] Bug 39000: Restore bg-danger color

In ktd 369 will show the "Encoding error" block:
http://localhost:8081/cgi-bin/koha/catalogue/detail.pl?biblionumber=369

The background color has changed this the bootstrap update and now looks
ugly.

This patch reuse the same color (#f2dede) we had before the upgrade

Signed-off-by: David Nind <david@davidnind.com>
---
 koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss
index 55d0bfab58..f19c917b5c 100644
--- a/koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss
+++ b/koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss
@@ -306,7 +306,7 @@ $secondary:     $gray-600; // $gray-600 !default;
 $success:       $green; // $green !default;
 $info:          $blue-300; // $blue-100; // $cyan !default;
 $warning:       $yellow; // $yellow !default;
-$danger:        $red; // $red !default;
+$danger:        #f2dede; // $red !default;
 $light:         #FFF; // $gray-100 !default;
 $dark:          #352c2e; // $gray-900 !default;
 // scss-docs-end theme-color-variables
-- 
2.39.5