# HG changeset patch # User Takumi IINO # Date 2016-05-23 18:02:33 # Node ID 278ae0578a76b1bafc88a559570990d18387c026 # Parent ff33bb5cf1e9fb75e9664ac279d1ad564781a555 datatables: put filters in top left corner where they are easier to spot This could probably also be done with DataTables "dom" positioning strings. 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 @@ -4889,3 +4889,12 @@ body table.dataTable thead .sorting_desc font-family: "kallithea"; content: "\23f7"; } + + +.dataTables_wrapper .dataTables_length { + float: right !important; +} + +.dataTables_wrapper .dataTables_filter { + float: left !important; +}