wilddeer / focus-fix

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Focus fix

Adds is-mouse-focused class to clicked elements (and removes it after blur), so you can separate mouse/touch focus style and keyboard focus style.

/* keyboard focus style */
:focus {
  outline: 1px solid blue;
}

/* mouse/touch focus style */
:active,
.is-mouse-focused:focus {
    outline: none;
}

:active is required to prevent flickering.

CC0

About


Languages

Language:JavaScript 100.0%