diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-01-31 16:57:53 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-01-31 16:57:53 +0000 |
commit | b25099829038578d12d5406716847bc630e418a7 (patch) | |
tree | c93bda0e1391a5c4a30b5eb1203aad9e38cda2b5 /interface/css/rspamd.css | |
parent | 44a97d4993c03ba868b1e7d70b4a1351ecca7732 (diff) | |
download | rspamd-b25099829038578d12d5406716847bc630e418a7.tar.gz rspamd-b25099829038578d12d5406716847bc630e418a7.zip |
[WebUI] Fix retarded datatables
Diffstat (limited to 'interface/css/rspamd.css')
-rw-r--r-- | interface/css/rspamd.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index 159d6ca50..15ca4afac 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -644,3 +644,18 @@ input.radio { #clusterTable .col3 { width: 50%; } +table.dataTable thead .sorting { +background: url("../img/asc.png") no-repeat center right; +} +table.dataTable thead .sorting_asc { +background: url("../img/asc.png") no-repeat center right; +} +table.dataTable thead .sorting_desc { +background: url("../img/desc.png") no-repeat center right; +} +table.dataTable thead .sorting_asc_disabled { +background: url("../img/asc.png") no-repeat center right; +} +table.dataTable thead .sorting_desc_disabled { +background: url("../img/desc.png") no-repeat center right; +}
\ No newline at end of file |