ui-grid-draggable-rows
Version:
HTML5 Drag and Drop functionality for angular ui-grid
29 lines (23 loc) • 421 B
text/less
.ui-grid-draggable-row-target {
opacity: 0.5 ;
}
.ui-grid-draggable-row {
height: 30px;
}
.ui-grid-draggable-row-over {
position: relative;
&:before {
content: "";
display: block;
position: absolute;
left: 0;
width: 100%;
border-bottom: 1px dotted #AAA;
}
&--above:before {
top: 0;
}
&--below:before {
bottom: 0;
}
}