app-default-portlet.less 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
.app-control-portlet {
    >.control-header {
        padding: 14px 16px;
        >.control-header__caption {
            font-size: 14px;
            font-weight: 400;
        }
    }
    > .app-control-portlet__content {
        width: 100%;
        height: calc(100% - 58px);
        overflow: auto;
    }
    > .app-control-portlet__content.portlet--no-title {
        width: 100%;
        height: 100%;
        overflow: auto;
    }
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
    .control-header {
        .control-header__caption {
            padding-left: 15px;
            font-weight: 600;
            font-size: 22px;
            display: inline-block;
            position: relative;
        }
        .control-header__caption::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 22px;
            border: none;
            border-radius: 5px;
            background: #557DA5;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translate(0,-50%);
        }
        .control-header__right {
            line-height: 33px;
        }
    }
}