Files
17168ERP/web/App_Script/sort/sort.css
2025-08-29 01:27:25 +08:00

42 lines
662 B
CSS

/* CSS Document */
body.dragging, body.dragging * {
cursor: move !important;
}
.dragged {
position: absolute;
opacity: 0.5;
z-index: 2000;
}
ol.example{
overflow:auto;
width:90%;
height:500px;
list-style-position:outside;
list-style-type:disc ;
border:solid;
border-width:1px;
border-color:dimgray;
}
ol.example li {
margin:2px;
border-bottom:dashed;
border-bottom-width:1px;
border-bottom-color:silver;
width:90%;
cursor:pointer;
list-style:none;
}
ol.example li.placeholder {
position: relative;
border:solid;
border-width:1px;
border-color:silver;
}
ol.example li.placeholder:before {
position: absolute;
}