Bug 6836: Add jQuery dataTables plugin
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / css / datatables.css
1 input.search_init {
2     color: #999999;
3 }
4 .sorting_asc {
5     padding-right: 19px;
6     background: url("../../img/datatables/sort_asc.png") no-repeat scroll right center #EEEEEE;
7 }
8 .sorting_desc {
9     padding-right: 19px;
10     background: url("../../img/datatables/sort_desc.png") no-repeat scroll right center #EEEEEE;
11 }
12 .sorting {
13     padding-right: 19px;
14     background: url("../../img/datatables/sort_both.png") no-repeat scroll right center #EEEEEE;
15 }
16 .sorting_asc_disabled {
17     padding-right: 19px;
18     background: url("../../img/datatables/sort_asc_disabled.png") no-repeat scroll right center #EEEEEE;
19 }
20 .sorting_desc_disabled {
21     padding-right: 19px;
22     background: url("../../img/datatables/sort_desc_disabled.png") no-repeat scroll right center #EEEEEE;
23 }
24 .sorting_disabled {
25     padding-right: 19px;
26     background-color: #EEEEEE;
27 }
28
29 table.display {
30     width: 100%;
31 }
32 table.display thead th {
33     border-bottom: 1px solid black;
34     cursor: pointer;
35     font-weight: bold;
36     padding: 3px 18px 3px 10px;
37 }
38 .dataTables_wrapper {
39     clear: both;
40     position: relative;
41 }
42 .dataTables_processing {
43     background-color: white;
44     border: 1px solid #DDDDDD;
45     color: #999999;
46     font-size: 14px;
47     height: 30px;
48     left: 50%;
49     margin-left: -125px;
50     margin-top: -15px;
51     padding: 14px 0 2px;
52     position: fixed;
53     text-align: center;
54     top: 50%;
55     width: 250px;
56 }
57 .dataTables_info {
58     float: left;
59     width: 60%;
60 }
61 .dataTables_paginate {
62     float: right;
63     text-align: right;
64     width: 44px;
65 }
66 .paging_full_numbers {
67     height: 22px;
68     line-height: 22px;
69     width: 400px;
70 }
71 .paging_full_numbers span.paginate_button,
72      .paging_full_numbers span.paginate_active {
73     border: 1px solid #aaa;
74     -webkit-border-radius: 5px;
75     -moz-border-radius: 5px;
76     padding: 2px 5px;
77     margin: 0 3px;
78     cursor: pointer;
79     *cursor: hand;
80 }
81
82 .paging_full_numbers span.paginate_button {
83     background-color: #ddd;
84 }
85
86 .paging_full_numbers span.paginate_button:hover {
87     background-color: #ccc;
88 }
89
90 .paging_full_numbers span.paginate_active {
91     background-color: #99B3FF;
92 }
93 .paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
94     float: left;
95     height: 19px;
96     margin-left: 3px;
97     width: 19px;
98 }
99 .paginate_disabled_previous {
100     background-image: url("../../img/datatables/back_disabled.jpg");
101 }
102 .paginate_enabled_previous {
103     background-image: url("../../img/datatables/back_enabled.jpg");
104 }
105 .paginate_disabled_next {
106     background-image: url("../../img/datatables/forward_disabled.jpg");
107 }
108 .paginate_enabled_next {
109     background-image: url("../../img/datatables/forward_enabled.jpg");
110 }
111 .spacer {
112     clear: both;
113     height: 20px;
114 }