From 82f70b2bfabcba68a58f59ab7940e22e6d44f419 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 26 Oct 2022 17:37:28 +0000 Subject: [PATCH] Bug 31996: Make note-style messages consistent with dialogs This patch modifies the style of divs with the class "note," making them have the same background color as message dialogs as proposed in Bug 31973. To test, apply the patch and rebuild the staff interface CSS. Confirm that the updated style looks good. Some pages where you can find examples: - Administration -> Authorized values -> View a categories values. - Administration -> Search engine cofiguration (with Elasticsearch enabled). - Cataloging -> Batch record deletion -> Submit a list of biblionumbers. --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index d4412a2956..e760fcc2b9 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1081,8 +1081,7 @@ div { } &.note { - background: linear-gradient(to bottom, #F4F6FA 0%, #E8EDF6 100%); // W3C - border: 1px solid #BCBCBC; + background-color: #CFE2FF; margin: .5em 0; padding: .5em; -- 2.30.2