TABLE_STYLE

Constant TABLE_STYLE 

Source
pub const TABLE_STYLE: &str = r#"
.adui-table {
    width: 100%;
    background: var(--adui-color-bg-container);
    border-radius: var(--adui-radius);
    border: 1px solid transparent;
    overflow: hidden;
}

.adui-table-bordered {
    border-color: var(--adui-color-border);
}

.adui-table-header {
    border-bottom: 1px solid var(--adui-color-border);
}

.adui-table-row {
    display: flex;
}

.adui-table-row-header {
    background: rgba(0, 0, 0, 0.02);
    font-weight: 500;
}

.adui-table-cell {
    flex: 1;
    padding: 8px 12px;
    border-right: 1px solid var(--adui-color-border);
    box-sizing: border-box;
}

.adui-table-row .adui-table-cell:last-child {
    border-right: none;
}

.adui-table-body-inner .adui-table-row:nth-child(even) {
    background: rgba(0, 0, 0, 0.01);
}

.adui-table-align-left { text-align: left; }
.adui-table-align-center { text-align: center; }
.adui-table-align-right { text-align: right; }

.adui-table-empty {
    padding: 16px;
}

.adui-table-pagination {
    padding: 8px 16px;
    text-align: right;
}
"#;