From bab4c5d0a844b7a307d35dd1d14c589c48534f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be> Date: Thu, 5 Oct 2017 12:57:46 +0200 Subject: [PATCH] :sparkles: feat(interface): Added visual indication that a column is sorted An icon is shown after column text to show that it it sorted closes #5708 --- html/themes/breezy/lists.css | 8 ++++++++ html/themes/legacy/lists.css | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/html/themes/breezy/lists.css b/html/themes/breezy/lists.css index 61734148f..8824e4d91 100644 --- a/html/themes/breezy/lists.css +++ b/html/themes/breezy/lists.css @@ -31,6 +31,14 @@ html.rtl table.listingTable > thead > tr > th { border-left: 1px solid #c0c2c3; } +/* Up and Down Arrows */ +.listingTable > thead > tr > th.descend:after { +content: "\25B2"; +} +.listingTable > thead > tr > th.ascend:after { +content: "\25BC"; +} + table.listingTable > tbody { height: 100%; overflow-x: hidden; diff --git a/html/themes/legacy/lists.css b/html/themes/legacy/lists.css index 7e9104e90..7819b924b 100644 --- a/html/themes/legacy/lists.css +++ b/html/themes/legacy/lists.css @@ -31,6 +31,14 @@ html.rtl table.listingTable > thead > tr > th { border-left: 1px solid #aaa; } +/* Up and Down Arrows */ +.listingTable > thead > tr > th.descend:after { +content: "\25B2"; +} +.listingTable > thead > tr > th.ascend:after { +content: "\25BC"; +} + table.listingTable > tbody { height: 100%; overflow-x: hidden; -- GitLab