add table item selection

This commit is contained in:
jeffvli
2025-10-23 00:19:06 -07:00
parent 17f5c5cd99
commit dae04e2aeb
12 changed files with 235 additions and 9 deletions
@@ -82,7 +82,6 @@
}
}
.container.data-row.row-hover-highlight-enabled:hover::before,
.container.data-row.row-hover-highlight-enabled.row-hovered::before {
position: absolute;
top: 0;
@@ -96,11 +95,35 @@
opacity: 0.7;
}
.container.data-row.row-selected::before {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
pointer-events: none;
content: '';
opacity: 0.7;
@mixin dark {
background-color: lighten(var(--theme-colors-surface), 5%);
}
@mixin light {
background-color: var(--theme-colors-surface);
}
}
.container.data-row > * {
position: relative;
z-index: 2;
}
.container.data-row {
cursor: pointer;
}
.header-container {
background: none;
}