feat(drill): hover affordance CSS + App wrapped in DrillStackProvider

This commit is contained in:
Tyler
2026-06-21 11:57:45 -06:00
parent fb7a5c6d2e
commit 9129543f5d
2 changed files with 18 additions and 2 deletions
+15
View File
@@ -413,3 +413,18 @@
animation-duration: 0s !important;
}
}
/* Universal drill-down affordance — applied by DrillableCell. */
.drillable {
cursor: pointer;
transition: background-color 120ms ease;
}
.drillable:hover {
background-color: hsl(var(--accent) / 0.08);
}
.drillable:hover::after {
content: "";
margin-left: 6px;
color: hsl(var(--accent));
font-weight: 600;
}