From 7f732c173457014af40b069f9b329d7e5e3db3cf Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 21 Apr 2021 13:42:52 +0000 Subject: [PATCH] Bug 28187: Make debit/credit row headers correct color To test: -Enable POS -Create a register and make some transactions. -Have both debits and credits -Have some older tranactions so you can look at the past_sales table. -Apply patch and regenerate the staff CSS: (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_interface) -Look at the sales and past_sales table. -Make sure each row header is the darker shade of gray (#e0e0e0) --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index dd1211569e..c1ccfe33ce 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1343,6 +1343,19 @@ div { display: none; } +#sales, #past_sales { + .credit { + > td { + background-color: #e0e0e0; + } + } + .debit { + > td { + background-color: #e0e0e0; + } + } +} + .tip { color: #808080; } -- 2.11.0