Commit 37bd3d44 authored by Jose's avatar Jose

Fix missing underline on focus states for anchor tags

parent 953608ac
...@@ -89,6 +89,11 @@ a { ...@@ -89,6 +89,11 @@ a {
color: $gl-link-color; color: $gl-link-color;
} }
a:not(.btn):focus,
a:not(.btn):active {
text-decoration: underline;
}
hr { hr {
overflow: hidden; overflow: hidden;
} }
......
...@@ -193,6 +193,7 @@ ...@@ -193,6 +193,7 @@
&:focus { &:focus {
background: $link-active-background; background: $link-active-background;
color: $gl-text-color; 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