Fix invisible focused item text

GOV.UK Template hanged the colour of text in focused links in
https://github.com/alphagov/govuk_template/commit/79466a489c38b0b82f4cb95daa2baba41b375a81

It was done with greater specificity than before. This means that the
way we were previously overriding the focus colour (for links with a
dark background) no longer works.

This commit makes our override more specific, so that it works again.
This commit is contained in:
Chris Hill-Scott
2017-10-17 16:34:47 +01:00
parent 184bd398f4
commit fb960205f3
+3 -1
View File
@@ -80,7 +80,9 @@
text-decoration: underline; text-decoration: underline;
} }
&:hover { &:hover,
&:focus,
&:link:focus {
color: $light-blue-25; color: $light-blue-25;
} }