From 7b3388aadf0c662a274e11b2187f86bfff544777 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 20 Apr 2018 06:07:19 -0400 Subject: [PATCH] Bug 20622: Add some color to bootstrap modal headers and footers Right now the bootstrap modal header, body and footer are all white. It would be nice to give them a bit of color. Test Plan: 1) Apply this patch 2) Find a patron, click the 'add message' button 3) Note the modal header and footer now have a background color Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/css/staff-global.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/css/staff-global.css index 00cddb3..bf009a6 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css +++ b/koha-tmpl/intranet-tmpl/prog/css/staff-global.css @@ -2690,6 +2690,15 @@ a.close:hover { margin-left: 0; } +.modal-body { + background-color: #FFF; + overflow-y: auto; +} + +.modal-content { + background-color : #EDF4F6; +} + /* Redefine a new style for Bootstrap's class "close" since we use that already */ /* Use × */ .alert .closebtn{position:relative;top:-2px;right:-21px;line-height:20px;} -- 2.1.4