blob: ad9d901305cd980b8fcb1dfc634c467bde406f87 (
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
|
table.dt-rowReorder-float {
opacity: 0.8;
}
div.dt-rowReorder-float-parent {
table-layout: fixed;
outline: 2px solid #00d1b2;
outline-offset: -2px;
z-index: 2001;
position: absolute !important;
overflow: hidden;
}
tr.dt-rowReorder-moving {
outline: 2px solid #888;
outline-offset: -2px;
}
body.dt-rowReorder-noOverflow {
overflow-x: hidden;
}
table.dataTable td.reorder {
text-align: center;
cursor: move;
}
|