From 3f08741a34a0c065657067e7e9bebe2e69efcfd2 Mon Sep 17 00:00:00 2001 From: Chris Ryan <73275196+chrisryan10@users.noreply.github.com> Date: Wed, 3 Sep 2025 13:54:41 +1000 Subject: [PATCH] Use less ambiguous sort direction symbols (#1108) * Use less ambiguous sort direction symbols * Up arrow for ascending, small bar at top, large bar at bottom; Down arrow for descending, large bar at top, small bar at bottom * Using matching icons * Switch the order --------- Co-authored-by: Chris Ryan --- styles/less/ui/item-browser/item-browser.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles/less/ui/item-browser/item-browser.less b/styles/less/ui/item-browser/item-browser.less index 70a64d89..5df0482a 100644 --- a/styles/less/ui/item-browser/item-browser.less +++ b/styles/less/ui/item-browser/item-browser.less @@ -279,11 +279,11 @@ } &[data-sort-type='ASC']:after { - content: '\f0d7'; + content: '\f884'; } &[data-sort-type='DESC']:after { - content: '\f0d8'; + content: '\f885'; } } }