From 13932d276624f69cf9f6f5e497f7c8a4ac9af671 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 --- .../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 bcd21ae..6be1cf7 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.7.4