CSS: Add :focus style to button-link

This commit is contained in:
Eric Lippmann 2015-12-16 12:32:52 +01:00
parent 8006090108
commit 0e8834a4a2
1 changed files with 4 additions and 0 deletions

View File

@ -27,9 +27,13 @@
-o-transition: background 0.3s ease, color 0.3s ease;
transition: background 0.3s ease, color 0.3s ease;
&:focus,
&:hover {
background-color: @color;
color: @background-color;
}
&:hover {
text-decoration: none;
}
}