mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-16 13:40:24 +02:00
add table item selection
This commit is contained in:
+24
-1
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user