Improve poll link accessibility (#10720)

* Add distinction between hover and active/focus states
* Resolves #10198
This commit is contained in:
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 {