grid-view-layout.scss 2.6 KB
Newer Older
1
.grid-view-layout {
RedPig97's avatar
RedPig97 committed
2
    height: 100%;
3 4
    background-color: transparent;
    box-shadow: none;
RedPig97's avatar
RedPig97 committed
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
    overflow: auto;
    display: flex;
    flex-direction: column;
    .view-header__top {
        height: 74px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: transparent;
        font-size: 14px;
        line-height: 22px;
        >.ivu-tooltip ,>.ivu-dropdown {
            .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;
                margin-left: 10px;
                z-index: 0;
            }
        }
        .seperator {
            display: none;
        }
    }
    .view-header__content {
37 38 39 40 41 42 43
        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);
RedPig97's avatar
RedPig97 committed
44
        .quick-search-input .ivu-input {
45 46 47 48 49 50 51 52 53
            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;
RedPig97's avatar
RedPig97 committed
54 55
            border: 1px solid var(--app-color-gray-250);
            border-radius: 0;
56
            z-index: 0;
RedPig97's avatar
RedPig97 committed
57 58 59 60
            &:focus {
                box-shadow: none;
                border-color: var(--app-color-gray-250);
            }
61 62
        }
    }
RedPig97's avatar
RedPig97 committed
63 64
    .view-header__bottom {
        height: 74px;
65 66
        display: flex;
        justify-content: flex-end;
RedPig97's avatar
RedPig97 committed
67
        align-items: center;
68
        background-color: transparent;
RedPig97's avatar
RedPig97 committed
69 70 71
        font-size: 14px;
        line-height: 22px;
        .ivu-btn {
72 73 74 75 76 77 78 79 80 81
            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;
RedPig97's avatar
RedPig97 committed
82 83 84 85 86
            margin-left: 10px;
        }
        .ivu-btn-primary {
            background: var(--app-color-blue);
            color: var(--app-color-white);
87 88
        }
    }
RedPig97's avatar
RedPig97 committed
89 90 91
    >.view-content {
        flex: auto;
        height: 0;
92 93
    }
}