@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
40 lines (39 loc) • 849 B
CSS
.wufeng-inputs-subFormSet-list {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin-top: 5px;
}
.wufeng-inputs-subFormSet-item {
display: flex;
flex-grow: 1;
align-items: center;
justify-content: space-between;
width: 100%;
height: 30px;
padding: 0 6px;
color: rgba(0, 0, 0, 0.65);
font-size: 14px;
line-height: 30px;
border: 1px solid #eaeaea;
}
.wufeng-inputs-subFormSet-item-edit {
margin-left: 5px;
cursor: pointer;
}
.wufeng-inputs-subFormSet-item.drop-over-downward {
border-bottom-color: #1890ff;
}
.wufeng-inputs-subFormSet-item.drop-over-upward {
border-top-color: #1890ff;
}
.wufeng-inputs-subFormSet:hover {
border: 1px solid #2196f3;
}
.wufeng-inputs-subFormSet-label {
flex-grow: 1;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}