1
0
Fork 0
mirror of synced 2024-10-05 20:44:47 +13:00

Merge pull request #5483 from Budibase/fix/sticky-icon-hover-state

Fix sticky hover state for icons on mobile
This commit is contained in:
Andrew Kingston 2022-04-22 10:49:04 +01:00 committed by GitHub
commit faf6a3ef1e

View file

@ -36,8 +36,13 @@
div {
font-style: italic;
}
.hoverable:hover {
@media (hover: hover) {
.hoverable:hover {
color: var(--spectrum-alias-icon-color-selected-hover) !important;
cursor: pointer;
}
}
.hoverable:active {
color: var(--spectrum-alias-icon-color-selected-hover) !important;
cursor: pointer;
}
</style>