MASA.Blazor
MASA.Blazor copied to clipboard
Button stays in hover state after being pressed on mobile
trafficstars
临时方案,添加css
@media (hover: none) {
.theme--light.m-btn:hover::before {
opacity: 0;
}
.theme--light.m-btn:focus::before {
opacity: 0;
}
.theme--light.m-btn--active:hover::before, .theme--light.m-btn--active::before {
opacity: 0;
}
.theme--light.m-btn--active:focus::before {
opacity: 0;
}
.theme--dark.m-btn:hover::before {
opacity: 0;
}
.theme--dark.m-btn:focus::before {
opacity: 0;
}
.theme--dark.m-btn--active:hover::before, .theme--dark.m-btn--active::before {
opacity: 0;
}
.theme--dark.m-btn--active:focus::before {
opacity: 0;
}
}
@capdiem PTAL