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 <pierre-marc.thibault@inLibro.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Owen Leonard 2018-10-02 13:50:28 +00:00 committed by Nick Clemens
parent fb6fb4ad53
commit 4915fc68b7

View 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 {