ibizcustomer-usr2-mpickup-view.scss 1.8 KB
Newer Older
1 2 3 4 5 6 7
// 基于 @VIEW/实体数据多项选择视图/VIEW.scss.ftl 生成
.ibizcustomer-usr2-mpickup-view{
    position: relative;
}



8 9
.dempickupview{
    .translate-contant {
10 11 12 13
        overflow: auto;
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;
14
        height: 100%;
15 16 17 18
        .translate-buttons {
            display: flex;
            align-items: center;
            text-align: center;
19
            margin-right: 12px;
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
            button {
                margin-bottom: 5px;
            }
        }
        .left, .right {
            width: 300px;
        }
        .right {
            border: 1px solid #e9e9e9;
            .mpicker-select {
                font-size: 16px;
                text-align: justify; 
                word-spacing: -3.8pt;
                line-height: 1.6;
                font-weight: bold;
                word-spacing: 10px;
                height: 100%;
                overflow: auto;
            }
            .mpicker-select > div {
                padding: 3px 10px;
                font-size: 14px;
                color: rgba(0, 0, 0, 0.85);
                font-weight: initial;
                cursor: pointer;
                min-height: 28px;
                border: 1px solid #e9e9e9;
                margin: 4px 4px;
                transition: all .3s;
            }
            .mpicker-select > div:hover {
                background: #ecf6fd;
            }
            .mpicker-select > .select{
                color: #108ee9;
                background: #ecf6fd;
            }
        }
        .center{
59
            width: calc(100% - 410px);
60 61 62 63 64 65
            .pickupviewpanel {
                width: 100%;
                height: 100%;
            }
        }
    }
66 67 68
    .footer{
        display: flex;
        justify-content: end;
69 70 71
        >.ivu-btn {
            margin-left: 10px;
        }
72 73
    }
}
74