Hide focus ring for mouse users

Fixes https://github.com/matrix-org/matrix.to/issues/120
This commit is contained in:
J. Ryan Stinnett
2020-10-23 17:04:54 +01:00
parent f8d5ab2b69
commit b5f173efd9
4 changed files with 17 additions and 5 deletions
+5
View File
@@ -65,6 +65,11 @@ hr {
margin: 0 40px;
}
// Suppress focus ring on form controls for mouse users
[data-whatintent='mouse'] *:focus {
outline: none;
}
.matrixIdentifier {
word-break: break-all;
}