focus-outline-manager
Watch users keyboard input and manage the focus outline visibility
By default, browsers add an outline around buttons and other controls when they are clicked:
Removing the outline for all users by setting *:focus {outline: none;}
will make the site less accessible for keyboard users.
focus-outline-manager
enables you to remove the outline for mouse users, retaining it for keyboard users.
Demo
Install
npm install --save focus-outline-manager
Usage
Using CommonJS module loading:
;
CSS:
Credits
focus-outline-manager
is based on a Chromium UI utility focus-outline-manager.js (Copyright © 2012, The Chromium Authors).