Commit 80044bda authored by Tim Zallmann's avatar Tim Zallmann

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
parents abdbe370 37bd3d44
......@@ -89,6 +89,11 @@ a {
color: $gl-link-color;
}
a:not(.btn):focus,
a:not(.btn):active {
text-decoration: underline;
}
hr {
overflow: hidden;
}
......
......@@ -193,6 +193,7 @@
&:focus {
background: $link-active-background;
color: $gl-text-color;
text-decoration: none;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment