grid-view-layout.scss 1.3 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
.degridview {
    // height: 100%;
    background-color: transparent;
    box-shadow: none;
    .grid-header-content {
        display: flex;
        flex-direction: column;
        padding: 16px 4px 20px 7px;
        gap: 10px;
        background: var(--app-color-white);
        box-sizing: border-box;
        border: 1px solid var(--app-color-gray-250);
        .quick-search-input {
            width: 100%;
            height: 34px;
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            align-items: center;
            padding: 4px 10px;
            background: var(--app-color-white);
            box-sizing: border-box;
            border: 1px solid var(--app-color-gray-250);;
            z-index: 0;
        }
    }
    .grid-header-bottom {
        display: flex;
        justify-content: flex-end;
        height: 74px;
        background-color: transparent;
        >.ivu-tooltip .ivu-btn {
            width: 110px;
            height: 34px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 10px 20px;
            background: var(--app-color-white);
            border: 1px solid var(--app-color-blue);
            border-radius: 0;
            z-index: 0;
        }
    }
    .grid-content {

    }
}