crm-drawer.less 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
.crm-modal {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100vh;
    z-index: 100;
    transition: all 0.5s;

    // 滚动条宽度
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        background: transparent;
    }

    // 滚动槽
    ::-webkit-scrollbar-track {
        border-radius: 0;
        box-shadow: none;
        border: 0;
    }

    // 滚动条滑块
    ::-webkit-scrollbar-thumb {
        border-radius: 0;
        box-shadow: none;
        border: 0;
        background-color: var(--app-scroll-bar-color);
    }

    >.crm-modal-item {
        position: absolute;
        height: 100vh;
        width: 100vw;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 1;
    }

41
    >.view-container>.crm-app-content-container>.view-content-wrapper {
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
        padding: 0px 10px;
    }
}

.crm-modal {

    >.crm-modal-item {

        .crm-app-view-header-wrapper {
            border-bottom: 1px solid #EBEEF5;
        }

        >.view-container {

            >.crm-app-content-container {

                >.view-content-wrapper {
                    
                    >.tabviewpanel {

                        >.tabexppanel.ivu-tabs {

                            >.ivu-tabs-bar {
                                display: flex;
                                justify-content: center;
                                border-bottom: none;
                            }
                        }
                    }
                }
            }
        }
    }
}