diff options
Diffstat (limited to 'uploader/static/css')
-rw-r--r-- | uploader/static/css/styles.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/uploader/static/css/styles.css b/uploader/static/css/styles.css index d41441d..8366c67 100644 --- a/uploader/static/css/styles.css +++ b/uploader/static/css/styles.css @@ -159,6 +159,15 @@ table.dataTable thead th, table.dataTable tfoot th{ background-color: #369; } -table.dataTable tbody tr.selected { +table.dataTable tbody tr.selected td { background-color: #ffee99 !important; } + + +.dt-scroll-body > table > thead { + /*** +Fixes bug with DataTables Scroller extension which leads to 2 table headers +being displayed. + **/ + display: none; +} |