From 374654508a0e0050c2910f7249517dd43d8e4de6 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. --- .../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.1.4