Fix: hide new page issues links on focus and tap

Change-Id: I355c5c4b4278071e89aa990a7644a0fb6e901dcb
This commit is contained in:
Stephen Niedzielski 2018-08-01 11:45:47 -05:00
parent 100b7951a2
commit 477a044728
1 changed files with 4 additions and 1 deletions

View File

@ -67,8 +67,11 @@ table.ambox {
// Hide links in new treatment
a {
color: inherit !important;
&:hover {
-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 ) !important;
&:hover,
&:focus {
text-decoration: none;
outline: inherit;
}
}