mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-12 01:47:08 +00:00
31 lines
477 B
SCSS
31 lines
477 B
SCSS
.draggable-element {
|
|
&.decorate {
|
|
&:hover:before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border: 4rpx solid $u-primary;
|
|
z-index: 10;
|
|
pointer-events: none;
|
|
cursor: move;
|
|
border-style: dotted;
|
|
}
|
|
|
|
&.selected:before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border: 4rpx solid $u-primary;
|
|
z-index: 10;
|
|
pointer-events: none;
|
|
cursor: move;
|
|
}
|
|
}
|
|
}
|