blob: 45219204c3755963fe1c9c79362ae81fa352c24e (
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 #0d6efd;
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;
}
|