# HG changeset patch # User Mads Kiilerich # Date 2016-05-23 18:02:33 # Node ID 37a2a02f9d6f56bec3544cbdbca2c9c0d267ac39 # Parent 4e78a8ed3f071c8a5bfb1dea724e457c4800c973 datatables: in css, use custom font for DataTable sort order instead of images we don't have diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -4863,3 +4863,29 @@ div.comment-prev-next-links div.next-com .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"; +}