From 9c06157006499a5bfd22a1df848b6b7f49238b63 Mon Sep 17 00:00:00 2001 From: nickmilo <35411533+nickmilo@users.noreply.github.com> Date: Wed, 31 May 2023 12:54:37 -0700 Subject: [PATCH] Add files via upload The third party plugin that currently allows dataview columns to be sortable (called "Sortable") has weird "countless arrows" as you sort. This update hides them. --- theme.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/theme.css b/theme.css index 44ff68b..fa1236e 100644 --- a/theme.css +++ b/theme.css @@ -3977,6 +3977,21 @@ dataview.table-view-table .table-view-tbody tr { margin-bottom: 0; } + +/*──────────────────────────────────── + Sortable Plugin (My attempt to get rid of the weird "countless arrows" visual) +────────────────────────────────────*/ + + +th[sortable-style="sortable-asc"] { + background-image: none !important; +} + +th[sortable-style="sortable-desc"] { + background-image: none !important; +} + + /*──────────────────────────────────── Hover Editor ────────────────────────────────────*/