Something went wrong while setting issue due date.
[Reboot] Suppress focus outline on elements that cannot be accessed via keyboard
Closed
[Reboot] Suppress focus outline on elements that cannot be accessed via keyboard
Created by: oleersoy
Hi,
SuitCSS's base module contains the following snippet to suppress the focus outline on elements that cannot be accessed via keyboard.
/**
* Suppress the focus outline on elements that cannot be accessed via keyboard.
* This prevents an unwanted focus outline from appearing around elements that
* might still respond to pointer events.
*/
[tabindex="-1"]:focus {
outline: none !important;
}
Perhaps reboot should also include this.
Cheers, Ole