fix: Fix bug that caused flyout buttons to retain their active appearance on mobile (#9582)

This commit is contained in:
Aaron Dodson
2026-01-27 00:54:13 -08:00
committed by GitHub
parent 028363edd0
commit ca16c85395

View File

@@ -427,7 +427,13 @@ Css.register(`
fill: #666;
}
.blocklyFlyoutButton:hover {
@media (hover: hover) {
.blocklyFlyoutButton:hover {
fill: #aaa;
}
}
.blocklyFlyoutButton:active {
fill: #aaa;
}