pocko-ui
Version:
React components using pure Bootstrap 5+ which does not contain any external style and script libraries.
18 lines (14 loc) • 384 B
CSS
@charset "UTF-8";
.table-wrapper {
--syntable-row-active-bg: #f0f8ff; /* 定义变量 */
}
.table-wrapper .table-tr-active {
background-color: var(--syntable-row-active-bg); /* 使用变量 */
}
.table-wrapper .table-cell-active {
background-color: var(--syntable-row-active-bg); /* 使用变量 */
}
.table-wrapper .table-auto-width {
width: auto;
table-layout: auto;
}