fix(button): disable :hover on non supported devices (#15705)

This commit is contained in:
Juan Miguel
2018-09-24 20:57:19 +02:00
committed by Manu MA
parent f68c457c06
commit 67eb661537
4 changed files with 23 additions and 12 deletions

View File

@ -40,8 +40,10 @@
// iOS Toolbar Button Solid
// --------------------------------------------------
::slotted(*) .button-solid-ios:hover {
opacity: .4;
@media (any-hover: hover) {
::slotted(*) .button-solid-ios:hover {
opacity: .4;
}
}