anentrypoint-design 0.0.325 → 0.0.326

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/247420.css CHANGED
@@ -3524,6 +3524,20 @@
3524
3524
  Comprehensive improvements for perfect UX across all surfaces
3525
3525
  ============================================================ */
3526
3526
 
3527
+ /* ------------------------------------------------------------
3528
+ Table — clickable row focus ring
3529
+ Table()'s onRowClick path (content.js) sets class="clickable"
3530
+ role="button" tabindex="0" on the <tr>; the browser's native
3531
+ :focus-visible outline on a <tr> renders inconsistently across
3532
+ engines (often clipped by table border-collapse), so it needs
3533
+ the same explicit outline treatment every other interactive
3534
+ primitive in this file gets, via the shared --focus-* tokens.
3535
+ -------------------------------------------------------------- */
3536
+ .ds-247420 tr.clickable:focus-visible {
3537
+ outline: var(--focus-w) solid var(--focus-color);
3538
+ outline-offset: calc(-1 * var(--focus-offset));
3539
+ }
3540
+
3527
3541
  /* ------------------------------------------------------------
3528
3542
  Component States — Disabled, Loading, Error, Success
3529
3543
  -------------------------------------------------------------- */