##// END OF EJS Templates
datagrid: fix some styling and processing text.
marcink -
r1541:5bd4fc3b default
parent child Browse files
Show More
@@ -555,6 +555,11 b' ul#context-pages {'
555 555 }
556 556 }
557 557
558 .dataTables_processing {
559 text-align: center;
560 font-size: 1.1em;
561 }
562
558 563 .dataTables_paginate, .pagination-wh {
559 564 text-align: left;
560 565 display: inline-block;
@@ -579,6 +584,15 b' ul#context-pages {'
579 584 color: @grey3;
580 585 cursor: default;
581 586 }
587
588 .ellipsis {
589 display: inline-block;
590 text-align: left;
591 padding: @menupadding/4 @menupadding;
592 border: 1px solid @rcblue;
593 border-left: 0;
594 float: left;
595 }
582 596 }
583 597
584 598 // SIDEBAR
@@ -18,6 +18,7 b''
18 18 </%def>
19 19
20 20 <%def name="main()">
21
21 22 <div class="box">
22 23
23 24 <div class="title">
@@ -50,7 +51,7 b''
50 51
51 52 // user list
52 53 $('#user_list_table').DataTable({
53 processing: false,
54 processing: true,
54 55 serverSide: true,
55 56 ajax: "${h.route_path('users_data')}",
56 57 dom: 'rtp',
@@ -79,6 +80,7 b''
79 80 ],
80 81 language: {
81 82 paginate: DEFAULT_GRID_PAGINATION,
83 sProcessing: _gettext('loading...'),
82 84 emptyTable: _gettext("No users available yet.")
83 85 },
84 86
General Comments 0
You need to be logged in to leave comments. Login now