blob: cc5a9eac969399b28ba1b974b0b3ae29171ff713 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
div.tool-button-container {
min-width: 1050px;
}
div.collection-table-options {
min-width: 1100px;
}
div.show-hide-container {
margin-bottom: 5px;
margin-top: 10px;
}
button.active {
background: #BEBEBE;
-webkit-box-shadow: inset 0px 0px 5px #c1c1c1;
-moz-box-shadow: inset 0px 0px 5px #c1c1c1;
box-shadow: inset 0px 0px 5px #c1c1c1;
outline: none;
}
div.dts {
display:block !important
}
div.dts div.dts_loading {
z-index:1
}
div.dts div.dts_label {
position:absolute;
right:10px;
background:rgba(0,0,0,0.8);
color:white;
box-shadow:3px 3px 10px rgba(0,0,0,0.5);
text-align:right;
border-radius:3px;
padding:0.4em;
z-index:2;
display:none
}
div.dts div.dataTables_scrollBody {
background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)
}
div.dts div.dataTables_scrollBody table {
z-index:2
}
div.dts div.dataTables_paginate,div.dts div.dataTables_length{
display:none
}
|