feat: add local surface review triage

This commit is contained in:
DCCONSTRUCTIONS
2026-07-26 00:11:42 +03:00
parent 3449b2bc3e
commit c6c48fbc38
12 changed files with 1273 additions and 33 deletions
+134 -1
View File
@@ -2956,13 +2956,19 @@
vector-effect: non-scaling-stroke;
}
.lidar-local-surface__timeline-tail {
stroke: #f0783d;
stroke-width: 1;
vector-effect: non-scaling-stroke;
}
.lidar-local-surface__timeline-selected {
stroke: rgb(255 255 255 / 0.88);
stroke-width: 1;
vector-effect: non-scaling-stroke;
}
.lidar-local-surface__timeline footer span:nth-child(2) {
.lidar-local-surface__timeline footer span {
display: flex;
align-items: center;
gap: 0.3rem;
@@ -2975,6 +2981,133 @@
background: #f5c23d;
}
.lidar-local-surface__timeline footer i[data-kind="tail"] {
background: #f0783d;
}
.lidar-local-surface__review {
display: grid;
gap: 0.55rem;
background: rgb(255 255 255 / 0.018);
padding: 0.68rem;
}
.lidar-local-surface__review > header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.8rem;
}
.lidar-local-surface__review > header > div {
display: grid;
gap: 0.12rem;
}
.lidar-local-surface__review > header span,
.lidar-local-surface__review > header small,
.lidar-local-surface__review > footer,
.lidar-local-surface__review > p {
color: var(--nodedc-text-muted);
font-size: 0.56rem;
}
.lidar-local-surface__review > header strong {
color: var(--nodedc-text-primary);
font-size: 0.72rem;
}
.lidar-local-surface__review-filters {
display: flex;
flex-wrap: wrap;
gap: 0.32rem;
}
.lidar-local-surface__review-filters button {
border: 0;
border-radius: 999px;
background: rgb(255 255 255 / 0.035);
color: var(--nodedc-text-muted);
padding: 0.34rem 0.52rem;
font-size: 0.56rem;
}
.lidar-local-surface__review-filters button:hover,
.lidar-local-surface__review-filters button:focus-visible,
.lidar-local-surface__review-filters button[data-active="true"] {
outline: 0;
background: rgb(255 255 255 / 0.09);
color: var(--nodedc-text-primary);
}
.lidar-local-surface__review-filters button span {
margin-left: 0.2rem;
color: var(--nodedc-text-secondary);
}
.lidar-local-surface__review-items {
display: grid;
max-height: 17rem;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.34rem;
overflow-y: auto;
}
.lidar-local-surface__review-items button {
position: relative;
display: grid;
min-width: 0;
gap: 0.16rem;
border: 0;
border-radius: 0.65rem;
background: rgb(255 255 255 / 0.025);
padding: 0.55rem 1.1rem 0.55rem 0.62rem;
text-align: left;
}
.lidar-local-surface__review-items button::after {
position: absolute;
top: 0.62rem;
right: 0.58rem;
width: 0.35rem;
height: 0.35rem;
border-radius: 50%;
background: var(--nodedc-text-muted);
content: "";
}
.lidar-local-surface__review-items button[data-attention="high"]::after {
background: #f0783d;
}
.lidar-local-surface__review-items button:hover,
.lidar-local-surface__review-items button:focus-visible,
.lidar-local-surface__review-items button[data-active="true"] {
outline: 0;
background: rgb(255 255 255 / 0.075);
}
.lidar-local-surface__review-items span,
.lidar-local-surface__review-items small {
overflow: hidden;
color: var(--nodedc-text-muted);
font-size: 0.54rem;
text-overflow: ellipsis;
white-space: nowrap;
}
.lidar-local-surface__review-items strong {
overflow: hidden;
color: var(--nodedc-text-secondary);
font-size: 0.61rem;
text-overflow: ellipsis;
white-space: nowrap;
}
.lidar-local-surface__review > footer {
line-height: 1.45;
}
.lidar-local-surface__stage {
display: grid;
overflow: hidden;