app-mpicker.less 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
.app-mpicker{
    .app-mpicker-select-container{
        position: relative;
        width: 100%;
        .el-select{
            width: 100%;
        }
        .app-mpicker-open-icon{
            position: absolute;
            right: 5px;
            color: #c0c4cc;
            top: 0;
            font-size: 13px;
        }
    }
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
    .el-select__tags {
        .el-tag {
            display: flex;
            max-width: 100%;
            cursor: pointer;
        }
        .el-select__tags-text {
            display: block;
            max-width: 100%;
            text-overflow: ellipsis;
            overflow: hidden;
        }
        .el-tag__close.el-icon-close {
            top: 3px;
            right: -4px;
            display: block;
            font-size: 14px;
        }
    }
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
}
// 下拉列表的远程加载样式
.el-select-dropdown {
    .is-empty {
        text-align: center;
        height: 100px;
        width: 100%;
        line-height: 100px;
        font-size: 20px;
        color: #999;
        padding: 0 20px;
        margin: 0;
        list-style: none;
    }
}