@import '../../style/variables.less';

.@{prefix}-pageheader-bar {
    display: flex; // justify-content: space-between;
    flex-shrink: 0;
    height: 50px;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid @border-color;
    background-color: #fff;
    font-size: 16px;
    font-weight: bold;

    &_back {
        margin-right: @box-padding/2;
        width: 25px;
        height: 25px;
        line-height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: @secondary-text-color;

        &:hover {
            cursor: pointer;
            color: @maycur-color;
        }
    }

    &_title {
        font-size: @primary-font-size;
        font-weight: bold;
        flex: auto;
        display: flex;
        justify-content: space-between;
        color: #555;

        .ant-breadcrumb {
            display: flex;
            align-items: center;
            font-weight: normal;
            font-size: 16px;
            color: #555;

            .ant-breadcrumb-link {
                height: 25px;
                line-height: 25px;
            }
        }
    }

    &_help {
        color: @maycur-color;
        cursor: pointer;
        justify-self: flex-end;

        &_icon {
            margin-right: 4px;
            font-size: 16px;
            vertical-align: top;
        }
    }

    &_content {
        max-width: 400px;
    }

    &_close {
        padding: @box-padding/2;
        cursor: pointer;
    }
}