From 8f2f3d3bbcb9157c99cab3c0aeaa4c29740c03a4 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 31 Jan 2021 17:17:27 +0100 Subject: [PATCH] make cursor pointer for sort --- styles.css | 3 +++ table.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/styles.css b/styles.css index 4215794..4d38f99 100644 --- a/styles.css +++ b/styles.css @@ -4461,6 +4461,9 @@ table.fixed { table:not([id]) > thead .sort-asc, table:not([id]) > thead .sort-desc { display: none; } +table .order-up, table .order-down { + cursor: pointer; } + table .sort-asc, table .sort-desc, table .filter { padding: 0 5px 0 5px; cursor: pointer; } diff --git a/table.scss b/table.scss index 870889f..f20a47d 100644 --- a/table.scss +++ b/table.scss @@ -14,6 +14,10 @@ table:not([id]) > thead .sort-asc, table:not([id]) > thead .sort-desc { display: none; } +table .order-up, table .order-down { + cursor: pointer; +} + table .sort-asc, table .sort-desc, table .filter { padding: 0 5px 0 5px; cursor: pointer;