From a7802c5c3f54afa2b08f7d07ae18716b80b6d20a Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 17 Feb 2016 21:17:10 -0500 Subject: [PATCH] Bug 15071 - In OPAC search results, "checked out" status should be more visible The prog template in the OPAC designated a color for the "unavailable" class associated with items in search results which are checked out. This class never made it into the Bootstrap theme. This patch adds it to the Bootstrap theme's LESS file. To test, apply the patch and search the OPAC for terms that will return checked out items. In the list of search results, on the "availability" line, the "Checked out" text should now be red. The change is visible with XSLT on or off. Signed-off-by: Nicole C Engard Signed-off-by: Jonathan Druart Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 4270c1443f1a66de2c9ba7f781176c8c3914c88b) Signed-off-by: Julian Maurice --- koha-tmpl/opac-tmpl/bootstrap/less/opac.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less b/koha-tmpl/opac-tmpl/bootstrap/less/opac.less index 6da32e5967..6062a2fb63 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/less/opac.less +++ b/koha-tmpl/opac-tmpl/bootstrap/less/opac.less @@ -2073,6 +2073,10 @@ button.closebtn{padding:0;cursor:pointer;background:transparent;border:0;-webkit color : #006600; } +.unavailable { + color: #990033; +} + .waiting,.intransit,.notforloan,.checkedout,.lost,.notonhold { display : block; } -- 2.39.5