jjb-lc-designable
Version:
基于alibaba-designable源码二次封装的表单设计器。
71 lines (64 loc) • 1.17 kB
text/less
.dn-border-style-setter {
display: flex;
&-position {
margin-left: -10px;
}
&-input {
height: 110px;
display: flex;
flex-direction: column;
justify-content: space-between;
margin-bottom: 10px;
}
}
.border-style-solid-line {
position: relative;
width: 100%;
height: 100%;
display: block;
&::after {
position: absolute;
top: 50%;
left: 0;
display: block;
content: '';
height: 0;
width: 100%;
border-top: 2px solid currentColor;
transform: translateY(-50%);
}
}
.border-style-dashed-line {
position: relative;
width: 100%;
height: 100%;
display: block;
&::after {
position: absolute;
top: 50%;
left: 0;
display: block;
content: '';
height: 0;
width: 100%;
border-top: 2px dashed currentColor;
transform: translateY(-50%);
}
}
.border-style-dotted-line {
position: relative;
width: 100%;
height: 100%;
display: block;
&::after {
position: absolute;
top: 50%;
left: 0;
display: block;
content: '';
height: 0;
width: 100%;
border-top: 2px dotted currentColor;
transform: translateY(-50%);
}
}