From 0225bdb772d1334cc1aa7ab0fc3678df0864df6b Mon Sep 17 00:00:00 2001 From: AlisaLinUwU Date: Sun, 26 Jan 2025 10:42:28 +0500 Subject: Initialize --- .../css/rowReorder.bootstrap4.css | 22 ++++++++++++++++++++++ .../css/rowReorder.bootstrap4.min.css | 1 + 2 files changed, 23 insertions(+) create mode 100644 src/main/resources/static/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css create mode 100644 src/main/resources/static/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css (limited to 'src/main/resources/static/plugins/datatables-rowreorder/css') diff --git a/src/main/resources/static/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css b/src/main/resources/static/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css new file mode 100644 index 0000000..025b622 --- /dev/null +++ b/src/main/resources/static/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css @@ -0,0 +1,22 @@ +table.dt-rowReorder-float { + position: absolute !important; + opacity: 0.8; + table-layout: fixed; + outline: 2px solid #0275d8; + outline-offset: -2px; + z-index: 2001; +} + +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; +} diff --git a/src/main/resources/static/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css b/src/main/resources/static/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css new file mode 100644 index 0000000..3a53aa2 --- /dev/null +++ b/src/main/resources/static/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css @@ -0,0 +1 @@ +table.dt-rowReorder-float{position:absolute !important;opacity:.8;table-layout:fixed;outline:2px solid #0275d8;outline-offset:-2px;z-index:2001}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} -- cgit v1.2.3