From e7b10cf1ee278e92000cac21a5e539c0b8b513d0 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 18 Dec 2025 06:56:16 -0500 Subject: [PATCH] Bug 40816: (follow-up) Standardize sort icon alignment DataTables wants to change the alignment of the sorting icons when it detects the column contents as numeric or date. This patch overrides that. --- koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss index 634b95efd39..a544c0164f1 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss @@ -169,12 +169,26 @@ table { td { padding: .5em; } + tr.dtrg-group { td { background: #e0e0e0; } } } + + th.dt-type-numeric, + th.dt-type-date, + td.dt-type-numeric, + td.dt-type-date { + div.dt-column-header { + flex-direction: row; + } + + div.dt-column-footer { + flex-direction: row; + } + } } /* Row grouping */ -- 2.39.5