Fix invisible focused item text

GOV.UK Template hanged the colour of text in focused links in
79466a489c

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

View File

@@ -80,7 +80,9 @@
text-decoration: underline;
}
&:hover {
&:hover,
&:focus,
&:link:focus {
color: $light-blue-25;
}