output-reconciliation-configuration.less 1.66 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
.output-reconciliation-configuration-page {
    padding: 20px;
    height: 100%; //每页的导航头
    .btn {
        height: 28px;
    }

    .menu-header {
        background-color: white;
        height: 30px;

        .menu-title {
            width: 400px;
            display: inline-block;
            float: left;
            color: #a22;
            font-weight: bold;
        }

        .menu-dropdown-title {
            width: 200px;
            height: 40px;
            padding: 18px 0 0 30px;
            font-size: medium;
            display: inline-block;
            float: left;
        }

        .menu-dropdown {
            display: inline-block;
            margin-top: 13px;

            .dropdown .btn-default {
                width: 150px;
                border-radius: 27px;
                height: 33px;
                background-color: @color-orange-deep;
                color: white;

                &:hover {
                    background-color: @color-orange-primary;
                }
            }
        }
        //右侧日志图标
        .menu-log {
            padding-left: 20px;
            display: inline-block;
            float: right;
        }
    }
    //下面内容容器
    .content-container {
        height: calc(~"100% - (@{header-height} + @{container-mt} + @{container-mb})");
        margin-top: @container-mt;
        margin-bottom: @container-mb;

        #reconciliationGrid {
            height: 100%;
        }
    }

    .sortRow {
        cursor:pointer;
    }

    .modal-title {
        color: #CCC;
        font-weight: bold;
    }

    .btn-tesla-primary[disabled] {
        background-color: #868686;
    }
}