From dd1d3280fd24d9011e1d5d439f964dd7cfb95295 Mon Sep 17 00:00:00 2001 From: Jonathan Druart 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 --- 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 55d0bfab582..f19c917b5cb 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.34.1