I use an underline that shows the effects of hovering over navigation links. When I am on Safari, the first hover background appears according to my css, but I see an orange background. I found that if you remove the height of the pseudo-elements, this orange background will not be visible.
@mixin underline-reveal {
vertical-align: middle;
-webkit-transform: translateZ(0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
position: relative;
overflow: hidden;
}
@mixin underline-reveal-before ($color) {
content: "";
position: absolute;
z-index: -1;
left: 0;
right: 0;
bottom: 0;
background-color: $color;
height: 3px;
-webkit-transform: translateY(4px);
transform: translateY(4px);
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}

source
share