@import '~@alifd/next/variables.scss';

$biz-css-prefix: '.bizpack';

.ant-pro, .fd-layout-p.fd-layout-p-spacing .ant-pro {
    width: 100%;
    .ant-pro-card .ant-pro-card-body {
        padding: 0;
    }
}

.th-bold {
    .ant-table-thead .ant-table-cell {
        font-weight: bold;
    }
}
.th-font-default {
    .ant-table-thead .ant-table-cell {
        font-size: 12px;
    }
}
.th-font-middle {
    .ant-table-thead .ant-table-cell {
        font-size: 14px;
    }
}
.th-font-large {
    .ant-table-thead .ant-table-cell {
        font-size: 16px;
    }
}

.field-wrapper {
    display: inline-block;
    position: relative;

    &.disable-edit {
        &:after {
            content: '';
            display: block;
            position: absolute;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,.1);
            cursor: not-allowed;
        }
    }
}