Bug 21470: Due date no longer shown in red when viewing checkouts for a patron
authorOwen Leonard <oleonard@myacpl.org>
Tue, 2 Oct 2018 13:50:28 +0000 (13:50 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Tue, 9 Oct 2018 11:53:02 +0000 (11:53 +0000)
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 <pierre-marc.thibault@inLibro.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss

index bcd21ae..6be1cf7 100644 (file)
@@ -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 {