From c6d65766a48c2b9f64b1a02ec934204e73101cbe Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Dec 2014 10:51:08 +0100 Subject: [PATCH] Bug 13369: table should been highlighted correctly when row are grouped The css used to highlight the rows comes from staff-global.css We need a more specific rule to be used. Test plan: Go on the fund list view and confirm that the rows are correctly highlighted. --- koha-tmpl/intranet-tmpl/prog/en/css/datatables.css | 14 +++++++++++++- koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css b/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css index f7239fe..e70a5a8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/datatables.css @@ -241,8 +241,20 @@ span.filter_column > input.text_filter { } /* Row grouping */ -td.group { +td.group, +table.group td.group { background-color: #D1CFD0; border-bottom: 2px solid #A19B9E; border-top: 2px solid #A19B9E; } + +table.group tr.odd td { + background-color : #F3F3F3; + border : 1px solid #BCBCBC; + border-right : 1px solid #BCBCBC; +} + +table.group tr.even td { + background-color: #FFF; + border-right : 1px solid #BCBCBC; +} diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt index 5da1b50..2adf469 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt @@ -273,7 +273,7 @@ var MSG_PARENT_BENEATH_BUDGET = "- " + _("New budget-parent is beneath budget") [% IF budgets %] - +
[% UNLESS budget_period_id %]
Expand all -- 2.1.0