Я применяю фильтр тени к элементу div (раскрывающемуся), который отображается и скрывается в соответствии с пользовательским взаимодействием, однако в Safari тень остается видимой, даже если элемент скрыт.
Ошибка возникает только в Safari.
document.querySelector('.bt').addEventListener('click', function () {
let b = document.querySelector('.b');
if (b.style.display === "none") {
b.style.display = "block";
} else {
b.style.display = "none";
}
})
.bt {
padding: 10px;
margin-bottom: 40px;
}
.a {
height: 100px;
padding: 20px;
background: #ccc;
}
.b {
position: relative;
width: 50px;
height: 50px;
background: #0f0;
filter: drop-shadow(0 0 0.125rem #000);
}
.b::after {
content: '';
position: absolute;
display: inline-block;
width: 0;
height: 0;
border-right: .5rem solid transparent;
border-left: .5rem solid transparent;
border-bottom: .5rem solid #0f0;
top: -.5rem;
left: .5rem;
}
<h1>drop-shadow filter bug with Safari</h1>
<button class="bt">CLICK ME!</button>
<div class="a">
<div class="b">
.b
</div>
</div>