From 1e2feff4897432711e88ca7ce30bedb60d885654 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Mon, 10 Feb 2025 17:23:51 +0000 Subject: [PATCH] Bug 39040: Add CSS back via _tables.scss To test: 1/ Turn on POS 2/ Enable Cash registers 3/ Configure some items for sale 4/ Make some POS transactions 5/ Visit pos/register.pl?registerid=x 6/ Notice the problem described 7/ APPLY PATCH and regenerate CSS ( https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_interface ) 8/ Look at the table again. The rows should now be correctly highlighted. Signed-off-by: Barbara Johnson --- koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss index ae6839e02f..7927c8841d 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss @@ -180,6 +180,11 @@ table { td { padding: .5em; } + tr.dtrg-group { + td { + background: #e0e0e0; + } + } } } -- 2.39.5