@use 'element-plus/theme-chalk/src/mixins/mixins.scss' as *;

@include b(schema-table){
    @include when(fill){
        height: 100%;
        overflow: hidden;
    }

    @include e(expandable){
        padding:0 50px;
    }
}

@include b(table-cell-state){
    @include e(dot){
        width: 6px;
        height: 6px;
        border-radius: 50%;
        &.is-danger{
            background-color: getCssVar('color','danger');
        }
        &.is-warning{
            background-color: getCssVar('color','warning');
        }
        &.is-primary{
            background-color: getCssVar('color','primary');
        }
        &.is-success{
            background-color: getCssVar('color','success');
        }
        &.is-info{
            background-color: getCssVar('color','info');
        }
    }
}