feat(drill): hover affordance CSS + App wrapped in DrillStackProvider
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user