jjb-lc-designable
Version:
基于alibaba-designable源码二次封装的表单设计器。
57 lines (47 loc) • 979 B
text/less
@import '../../variables.less';
.@{prefix-cls}-responsive-simulator {
background-color: var(--dn-responsive-simulator-bg-color);
}
.@{prefix-cls}-resize-handle {
position: absolute;
transition: 0.2s all ease-in-out;
box-sizing: border-box;
user-select: none;
bottom: 0;
z-index: 10;
background: var(--dn-resize-handle-bg-color);
color: var(--dn-resize-handle-color);
display: flex;
justify-content: center;
align-items: center;
&-RESIZE_WIDTH {
top: 0;
bottom: 15px;
cursor: ew-resize;
svg {
transform-origin: center;
transform: rotate(-90deg);
}
}
&-RESIZE_HEIGHT {
left: 0;
right: 15px;
cursor: ns-resize;
}
&-RESIZE {
cursor: nwse-resize;
}
&-RESIZE_HEIGHT,
&-RESIZE {
height: 15px;
}
&-RESIZE_WIDTH,
&-RESIZE {
right: 0;
width: 15px;
}
&:hover {
background: var(--dn-resize-handle-hover-bg-color);
color: var(--dn-resize-handle-hover-color);
}
}