From f695161ef33fe285df7c96ca0c577e94e7d1da55 Mon Sep 17 00:00:00 2001 From: Petro Vashchuk Date: Thu, 20 May 2021 16:12:18 +0300 Subject: [PATCH] Bug 28204: Fix table highlighting on the items table Fix table highlighting at /cgi-bin/koha/cataloguing/additem.pl?biblionumber=XXXX Every odd row of the table didn't get highlighted with the yellow color when you tried to edit it previously, this patch fixes that. That happened because every odd row had different coloring style that was overwriting yellow highlight. How to reproduce: 1) Head over to the /cgi-bin/koha/cataloguing/additem.pl?biblionumber=XXXX, where XXXX is id of some bilbio record that has more than one biblio item. 2) Press the "Action" button of the first (or any other odd numbered) biblion item, and from the dropdown menu select "edit" option. 3) Notice that it doesn't highlight it with yellow color. 4) Now do the same but with second biblio item (or any even numbered item). 5) Notice that it highlights it with the yellow color. 6) Apply the patch. Do yarn build to compile css. 7) Make sure that every row of the table that you edit gets properly highlighted with the yellow color. Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer JD Amended commit title --- koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss index b67f7f9268a..44e2b32ae4e 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss @@ -334,6 +334,10 @@ tbody { &:nth-child(odd):not(.dtrg-group) { td { border-right: 1px solid $table-border-color; + } + } + &:nth-child(odd):not(.dtrg-group):not(.active) { + td { &:not(.bg-danger):not(.bg-warning):not(.bg-info):not(.bg-success):not(.bg-primary) { background-color: $table-odd-row; } -- 2.20.1