moveable
moveable copied to clipboard
How to hide the outer border
I set the origin property, but it doesn't seem to work
@topdevelop
Handle the child element of moveable with css.
@topdevelop
Handle the child element of moveable with css.
How exactly do I do this ?
@aayush801
.moveable-control.moveable-origin {
border-color: #f55;
background: #fff;
width: 12px;
height: 12px;
margin-top: -6px;
margin-left: -6px;
pointer-events: none;
}
in scoped style sheet , how to change the moveable line color or hide it
@huanghaiyang
- Set color variable
.moveable-control-box {
--moveable-color: #4af;
}
- Set
hideDefaultLines
to true for hiding lines.