From e7b483088e6d1113003c394435530a2e3f0d5188 Mon Sep 17 00:00:00 2001 From: 0xb00bface <0xboobface@gmail.com> Date: Sat, 20 Feb 2021 19:36:41 +0100 Subject: [PATCH] Fix table sort order indicator icon --- server/src/main/resources/html/static/custom.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/main/resources/html/static/custom.css b/server/src/main/resources/html/static/custom.css index ace1d7e4..7d55bceb 100644 --- a/server/src/main/resources/html/static/custom.css +++ b/server/src/main/resources/html/static/custom.css @@ -45,10 +45,12 @@ body {overflow-y:scroll;} } .asc:after { + font-family: 'Font Awesome\ 5 Free'; content: "\f0de"; /* unicode sort up */ } .desc:after { + font-family: 'Font Awesome\ 5 Free'; content: "\f0dd"; /* unicode sort down */ }