Merge branch 'jivl-fix-focused-links-missing-underline' into 'master'

Fix missing underline on focus states for anchor tags

Closes #47748

See merge request gitlab-org/gitlab-ce!19873
This commit is contained in:
Tim Zallmann 2018-06-19 15:31:58 +00:00
commit 80044bdad0
2 changed files with 6 additions and 0 deletions

View File

@ -89,6 +89,11 @@ a {
color: $gl-link-color;
}
a:not(.btn):focus,
a:not(.btn):active {
text-decoration: underline;
}
hr {
overflow: hidden;
}

View File

@ -193,6 +193,7 @@
&:focus {
background: $link-active-background;
color: $gl-text-color;
text-decoration: none;
}
}