fx-form-widget
Version:
50 lines (46 loc) • 893 B
text/less
.lineType_wrap {
width: 100%;
display: flex;
position: relative;
font-size: 12px;
border-radius: 4px;
.shade_cover {
position: absolute;
width: 100%;
height: 100%;
background: rgba(241, 241, 241, 0.5);
z-index: 100000;
display: block;
cursor: not-allowed;
}
.lineType_option {
display: flex;
flex: 1;
height: 35px;
border: 1px solid #e0e0e0;
cursor: pointer;
margin-right: 5px;
justify-content: center;
align-items: center;
span {
width: 70%;
}
.lineType_option_dotted {
border: 1px dashed #444;
}
.lineType_option_solid {
border: 1px solid #444;
}
.lineType_option_crudeSolid {
border: 2px solid #444;
}
}
.selected {
border: 1px solid;
background: rgb(44, 104, 255);
color: #fff;
span {
border-color: #fff ;
}
}
}