/*
 * An EMPTY control spanning its parent, beneath the content. It paints nothing
 * but its focus ring — the surface it belongs to owns the wash — so the radius
 * is the only thing the caller has to tell it, and that is the SURFACE's, which
 * makes it data rather than a rung.
 */
@layer theme, base, lotics, components, utilities;
@layer lotics.tokens, lotics.reset, lotics.components;

@layer lotics.components {
  .lotics-row-focus-entry {
    position: absolute;
    inset: 0;
    border: 0 solid var(--border);
    border-radius: var(--lotics-row-focus-entry-radius);
    background-color: transparent;
    appearance: none;
    /* The ARROW, like the surface it belongs to: a register row is a button
       wrapped around data, and a pointing hand over a column of values invites
       a click on the value rather than on the row. */
    cursor: auto;
  }

  .lotics-row-focus-entry:focus-visible {
    outline: var(--lotics-ring-width) solid var(--ring);
    outline-offset: 0;
  }
}
