[Webkit-unassigned] [Bug 184601] CSS filter property with feColorMatrix on moving elements does not work

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 15 10:28:31 PST 2022


https://bugs.webkit.org/show_bug.cgi?id=184601

--- Comment #11 from Stephen Bannasch <stephen.bannasch at gmail.com> ---
Here's the very ugly hack I'm using to make something work on Safari:

  .fixed-video-container {
    visibility: visible;
    opacity: 1;
    filter: url(#blue-wash);
    @media not all and (min-resolution: 0.001dpcm) {
      @supports (-webkit-appearance: none) {
        filter: sepia(100%) hue-rotate(145deg) saturate(400%) brightness(100%)
          contrast(25%);
      }
    }
  }

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20220215/a344e17e/attachment.htm>


More information about the webkit-unassigned mailing list