Improve poll link accessibility (#10720)

* Add distinction between hover and active/focus states
* Resolves #10198
Этот коммит содержится в:
Maciek Baron 2019-05-09 21:03:32 +01:00 коммит произвёл Eugen Rochko
родитель 7a6464bea0
Коммит c407a4edf8
1 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -114,11 +114,14 @@
text-decoration: underline;
font-size: inherit;
&:hover,
&:focus,
&:active {
&:hover {
text-decoration: none;
}
&:active,
&:focus {
background-color: rgba($dark-text-color, .1);
}
}
.button {