From f45b57340608457c3afd28409efdae3ec08e05e6 Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Wed, 1 Mar 2023 09:37:32 -0800 Subject: [PATCH] LP2008918: default modal background color To test: 1) Open the holdings editor in the angular staff catalog 2) right click on an item 3) select Add/Manage Item notes 4) Note that you can't see the text at the top of the modal, nor can you see the close button 5) Apply this patch and repeat steps 1-3 6) Note that the modal header is a darker color, so the text and close button are again visible. Signed-off-by: Jane Sandberg --- Open-ILS/src/eg2/src/styles.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/styles.css b/Open-ILS/src/eg2/src/styles.css index e1d8e74380..b3a21b2061 100644 --- a/Open-ILS/src/eg2/src/styles.css +++ b/Open-ILS/src/eg2/src/styles.css @@ -315,6 +315,11 @@ body>.dropdown-menu {z-index: 2100;} @media (min-width: 1600px) { .modal-xl { max-width: 1500px; } } @media (min-width: 1700px) { .modal-xl { max-width: 1600px; } } +/* Default modal background color */ +.modal-header { + background-color: #062C65; +} + /* Contrast for dialog titles */ .modal-header .modal-title { color: #fff; @@ -525,4 +530,4 @@ input.small { .badge.text-bg-dark { color: #000; background: #adb5bd; -} \ No newline at end of file +} -- 2.11.0