mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-26 13:02:50 +00:00
17 lines
529 B
CSS
17 lines
529 B
CSS
/*
|
|
* A clickable StatTile. The hover cue lives here rather than in inline style
|
|
* handlers so it can use a real `:hover` — a JS mouseenter/leave pair misses
|
|
* keyboard focus, and `:focus-visible` needs the app's focus ring anyway.
|
|
*/
|
|
.ema-stat-tile-clickable > * {
|
|
transition: border-color 120ms ease, box-shadow 120ms ease;
|
|
}
|
|
|
|
.ema-stat-tile-clickable:hover > * {
|
|
border-color: var(--mantine-primary-color-filled);
|
|
}
|
|
|
|
.ema-stat-tile-clickable:focus-visible > * {
|
|
border-color: var(--mantine-primary-color-filled);
|
|
}
|