remove opacity on hidden overlay link items, which messed with clickability on ios
This commit is contained in:
@ -98,7 +98,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
/*&:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
.text {
|
.text {
|
||||||
&:before {
|
&:before {
|
||||||
@ -106,7 +106,7 @@
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.image {
|
.image {
|
||||||
|
@ -186,23 +186,24 @@ select {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
opacity: 0;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-indent: -9999px;
|
text-indent: -9999px;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
.linkItem {
|
@media (pointer: fine) {
|
||||||
transition: opacity var(--transition-easing);
|
.linkItem {
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
opacity: .6;
|
|
||||||
transition: opacity var(--transition-easing);
|
transition: opacity var(--transition-easing);
|
||||||
}
|
cursor: pointer;
|
||||||
|
|
||||||
&:has(:focus-visible) {
|
&:hover {
|
||||||
box-shadow: 0 0 0 1px var(--color-background), 0 0 0 3px var(--color-green-dark);
|
opacity: .6;
|
||||||
|
transition: opacity var(--transition-easing);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:has(:focus-visible) {
|
||||||
|
box-shadow: 0 0 0 1px var(--color-background), 0 0 0 3px var(--color-green-dark);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user