Commit 99310568 authored by Odai Jaber's avatar Odai Jaber Committed by Rajab Natshah
Browse files

Issue #3305787 by Odai Jaber: Fix will-change css property after the images...

Issue #3305787 by Odai Jaber: Fix will-change css property after the images are lazy loaded a shadow appears around it on Safari
parent 38c3a8fd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@
.blazy.field--type-image .b-lazy,
.blazy.media-cover-image .b-lazy {
  transition: filter 0.2s, transform 0.2s;
  will-change: filter, transform;
  transform: scale(1.001);
  opacity: 1;
  filter: blur(2px);
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
    .b-lazy {
      filter: blur(2px);
      transform: scale(1.001);
      will-change: filter, transform;
      transition: filter .2s, transform .2s;
      opacity: 1;
    }