changeset 5938:37a2a02f9d6f

datatables: in css, use custom font for DataTable sort order instead of images we don't have
author Mads Kiilerich <madski@unity3d.com>
date Mon, 23 May 2016 18:02:33 +0200
parents 4e78a8ed3f07
children b8830c373681
files kallithea/public/css/style.css
diffstat 1 files changed, 26 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Thu May 21 11:46:57 2015 +0200
+++ b/kallithea/public/css/style.css	Mon May 23 18:02:33 2016 +0200
@@ -4863,3 +4863,29 @@
 .icon-only-links i {
     color: white;
 }
+
+
+body table.dataTable thead .sorting {
+  background-image: none;
+}
+body table.dataTable thead .sorting_asc {
+  background-image: none;
+}
+body table.dataTable thead .sorting_desc {
+  background-image: none;
+}
+body table.dataTable thead .sorting_asc_disabled {
+  background-image: none;
+}
+body table.dataTable thead .sorting_desc_disabled {
+  background-image: none;
+}
+
+body table.dataTable thead .sorting_asc::after {
+  font-family: "kallithea";
+  content: "\23f6";
+}
+body table.dataTable thead .sorting_desc::after {
+  font-family: "kallithea";
+  content: "\23f7";
+}