From 4915fc68b754fb7beb52a0bf740a838237e6b9ff Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 2 Oct 2018 13:50:28 +0000 Subject: [PATCH] Bug 21470: Due date no longer shown in red when viewing checkouts for a patron This patch corrects an error in the staff client CSS which was causing overdue items on the checkout screen to not be highlighted. To test, apply the patch and regenerate the staff client CSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). Check out to a patron who has overdues. The overdue items should have due dates styled bold and red. Signed-off-by: Pierre-Marc Thibault Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens --- .../intranet-tmpl/prog/css/src/staff-global.scss | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 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 bcd21ae6f3..6be1cf7e3d 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -90,11 +90,6 @@ a { color: #666; } - &.overdue, - &.debit { - color: #CC0000; - } - &.popup { background: transparent url("../img/pop-up-link.png") center right no-repeat; padding-right: 15px; @@ -731,13 +726,14 @@ tbody { } } -.overdue { - td { - &.od { - color: #CC0000; - font-weight: bold; - } - } +.overdue, +.debit { + color: #CC0000; + font-weight: bold; +} + +.strong { + font-weight: bold; } tr { -- 2.11.4.GIT