From 304c713f3e5663b83506be5e86fa1258e7cabbbc Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 20 Jan 2023 13:51:53 +0000 Subject: [PATCH] Bug 32679: Use different CSS classes for titles of article requests in staff interface The class article-request-title was used for the column with the article title as well as for the link with the record title. This could cause some confusion when changing the table with CSS. This patch makes it so different CSS classes are used for each. To test: * Activate article requests in system preferences * Make sure circulation conditions have article requets = yes * Create an article request in staff or OPAC * View the list of article requests in the patron account in staff * Add the following line to IntranetUserCSS: .article-request-title { display:none; } * Verify the Title column and the title from Record title (first column) have vanished. * Apply patch: now only the column should vanish, Record title shoudl remain visible * If you want: Verify that the record title has a differently named class now. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 974563bfeee29eedbd1b1475fd73599959285cb1) Signed-off-by: Matt Blenkinsop (cherry picked from commit 021b9a5d2fdf7edee6916117266f773808e9073b) Signed-off-by: Lucas Gass (cherry picked from commit bfd23785efc7b0b7ce1bf849fe3febc5c419ae1c) Signed-off-by: Arthur Suzuki --- .../intranet-tmpl/prog/en/includes/patron-article-requests.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-article-requests.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-article-requests.inc index 2e23fc260f..020a16a22a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-article-requests.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-article-requests.inc @@ -26,7 +26,7 @@ [% FOREACH ar IN current_article_requests %] - + [% ar.biblio.title | html %] [% ar.item.enumchron | html %] -- 2.39.5