From 37bd3d44c6c985fc6e2a61488aadd31b01f36eb0 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 14 Jun 2018 15:30:40 -0500 Subject: Fix missing underline on focus states for anchor tags --- app/assets/stylesheets/bootstrap_migration.scss | 5 +++++ app/assets/stylesheets/framework/contextual_sidebar.scss | 1 + 2 files changed, 6 insertions(+) diff --git a/app/assets/stylesheets/bootstrap_migration.scss b/app/assets/stylesheets/bootstrap_migration.scss index 5da0e672288..cf952f026f5 100644 --- a/app/assets/stylesheets/bootstrap_migration.scss +++ b/app/assets/stylesheets/bootstrap_migration.scss @@ -89,6 +89,11 @@ a { color: $gl-link-color; } +a:not(.btn):focus, +a:not(.btn):active { + text-decoration: underline; +} + hr { overflow: hidden; } diff --git a/app/assets/stylesheets/framework/contextual_sidebar.scss b/app/assets/stylesheets/framework/contextual_sidebar.scss index 9cbaaa5dc8d..cccd1a6d942 100644 --- a/app/assets/stylesheets/framework/contextual_sidebar.scss +++ b/app/assets/stylesheets/framework/contextual_sidebar.scss @@ -193,6 +193,7 @@ &:focus { background: $link-active-background; color: $gl-text-color; + text-decoration: none; } } -- cgit v1.2.1