Koha/koha-tmpl/intranet-tmpl/lib/datatables/rowReorder.dataTables.min.css
Owen Leonard 81d12ad264
Bug 35249: Use DataTables RowReorder extension instead of tableDND jQuery plugin
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-04-26 20:15:49 +02:00

36 lines
869 B
CSS

div.dt-rowReorder-float-parent {
table-layout: fixed;
outline: 2px solid green;
z-index: 2001;
position: absolute !important;
overflow: hidden;
border-radius: 0;
}
div.dt-rowReorder-float-parent table.dt-rowReorder-float {
opacity: 0.9;
background-color: white;
margin: 0 !important;
}
div.dt-rowReorder-float-parent.drop-not-allowed {
cursor: not-allowed;
}
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;
}
html.dark div.dt-rowReorder-float-parent {
outline-color: #52ceff;
}
html.dark div.dt-rowReorder-float-parent table.dt-rowReorder-float {
background-color: var(--dt-html-background);
}
html.dark tr.dt-rowReorder-moving {
outline-color: #aaa;
}