shu-c-view
Version:
rollup 打包vue@2.7组件库框架
30 lines (29 loc) • 593 B
text/less
/* 下拉搜索 table 不分页组件 */
.base-select-input-table {
position: relative;
.el-input__prefix {
right: 0;
left: auto;
display: flex; // 加载中的icon小图标垂直水平居中
align-items: center;
justify-content: center;
padding-right: 10px;
}
.el-select__tags {
> span:first-child {
// display: block;
display: contents;
}
}
}
.base-select-input-table_loading {
position: absolute;
top: 45%;
left: 50%;
width: 100%;
height: 100%;
margin-top: -50%;
margin-left: -50%;
overflow: hidden;
// z-index: -1;
}