From 77252959d914e7b0b09758b57fdec71a3e0cef57 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 17 Aug 2023 13:06:01 +0000 Subject: [PATCH] Bug 34567: Correct colors for advanced cataloging editor status bar This patch updates the advanced cataloging editor CSS so that the "status bar" footer below the editor has colors consistent with the staff interface redesign. To test, apply the patch and clear your browser cache if necessary. - Enable the EnableAdvancedCatalogingEditor preference if necessary. - Go to Cataloging -> Advanced editor. - At the bottom of the screen below the editor the "status bar" should have a green border that matches color in the header search bar. Signed-off-by: Chris Cormack --- koha-tmpl/intranet-tmpl/prog/css/cateditor.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/cateditor.css b/koha-tmpl/intranet-tmpl/prog/css/cateditor.css index ba7de2e5b27..5cb3da21599 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/cateditor.css +++ b/koha-tmpl/intranet-tmpl/prog/css/cateditor.css @@ -199,8 +199,8 @@ body { } #statusbar { - background-color: #F4F8F9; - border: solid 2px #b9d8d9; + background-color: #EEE; + border: solid 2px #6FAF44; border-radius: 6px; overflow: auto; padding: 4px; @@ -477,4 +477,4 @@ body { .ui-keyboard-accept { display: none; -} \ No newline at end of file +} -- 2.30.2