From 3760cd93b9f133484024b82c62bed838ce7edbc0 Mon Sep 17 00:00:00 2001 From: David Cook Date: Wed, 6 Dec 2023 12:47:30 +1100 Subject: [PATCH] Enable brower-default outlines on links This code was from Spree. Unless you have good focus/active styles for all links, the outline is very helpful for accessibility. Most websites these days add nice thick outlines, which might be worth considering in the future. --- app/webpacker/css/admin_v3/shared/typography.scss | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/webpacker/css/admin_v3/shared/typography.scss b/app/webpacker/css/admin_v3/shared/typography.scss index b0d6d49cd3..a716aeeeaf 100644 --- a/app/webpacker/css/admin_v3/shared/typography.scss +++ b/app/webpacker/css/admin_v3/shared/typography.scss @@ -51,14 +51,6 @@ a:not(.button) { text-decoration: none; line-height: inherit; - &, - &:hover, - &:active, - &:visited, - &:focus { - outline: none; - } - &:visited { color: $color-link-visited; }