app-content-left-exp.less 2.0 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 41 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 76 77
.app-content-left-exp {
    height: 100%;
    display: flex;

    > .exp-actions {
        height: 100%;
        width: 48px;
        color: var(--leftsidebar-font-color);
        background: var(--leftsidebar-background-color);

        > .action-item {
            position: relative;
            height: 48px;
            width: 48px;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;

            > .active-item-indicator {
                position: absolute;
                z-index: 1;
                top: 0;
                bottom: 0;
                margin: auto;
                left: 0;
                overflow: hidden;
                width: 100%;
                height: 100%;
                pointer-events: none;
            }
        }

        > .action-item.active {
            color: var(--leftsidebar-font-color-bright);
            background-color: var(--leftsidebar-background-color-bright);
            > .active-item-indicator::before {
                content: '';
                position: absolute;
                z-index: 1;
                top: 0;
                left: 0;
                height: 100%;
                width: 0;
                border-left: 2px solid;
                border-left-color: var(--leftsidebar-font-color-bright);
            }
        }

        > .action-item:hover {
            color: var(--leftsidebar-font-color-bright);
            background-color: var(--leftsidebar-background-color-bright);
        }
    }

    > .exp-content {
        width: 100%;
        height: 100%;
        overflow: hidden;

        > .exp-item {
            width: 100%;
            height: 100%;
            overflow-x: hidden;
            overflow-y: auto;
            .ivu-card-body{
                height: calc(100% - 57px) !important;
            }
            .view-header {
                > .quick-search {
                    width: 150px;
                }
            }
        }
    }
}