From 1dcb7240a44691d967e58f6be2fe3901a278488b Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 8 May 2020 13:42:55 +0000 Subject: [PATCH] Bug 24405: Make OPAC link underlining consistent This patch makes a minor modification to the OPAC CSS so that links are consistently displayed without underlines in their inactive state. This corrects two cases: Links in the facets sidebar and "Check all/none" links shown on search results. To test, apply the patch and rebuild the OPAC CSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). - In the OPAC, perform a search. - In the search results facets sidebar, confirm that links are not underlined. - At the top of the search results table, confirm that the "Select all" and "Clear all" links are not underlined. --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 2 -- 1 file changed, 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index 8babc17b63..442d275bcf 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -2099,7 +2099,6 @@ input { a { font-weight: normal; - text-decoration: underline; } .facet-count { @@ -2208,7 +2207,6 @@ input { .CheckNone { font-weight: normal; margin: 0 .5em; - text-decoration: underline; } .sep { -- 2.11.0