MASA.Blazor icon indicating copy to clipboard operation
MASA.Blazor copied to clipboard

Button stays in hover state after being pressed on mobile

Open Yu-Core opened this issue 2 years ago • 2 comments
trafficstars

Yu-Core avatar Feb 09 '23 08:02 Yu-Core

临时方案,添加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;
    }
}

Yu-Core avatar Feb 09 '23 08:02 Yu-Core

@capdiem PTAL

doddgu avatar Feb 21 '23 03:02 doddgu