Intent to prototype: prefers-contrast

2020-07-14 Thread Zeke Medley
*Summary*: prefers-contrast is a media query that allows authors to detect visitors contrast preferences and apply custom CSS. It currently has four possible values, low, no-preference, forced, and high. Low and high match when a visitor has indicated that they prefer low or high contrast in eith

Intent to prototype: cross-fade

2020-07-14 Thread Zeke Medley
Summary: cross-fade is a CSS function part of the CSS Image Module Level 4. cross-fade allows for the blending of multiple CSS images with varying opacities. For example: cross-fade(url(“foo.jpg”) 50%, radial-gradient(circle, transparent 50%, black 150%) 50%); might be used to add a

Re: Intent to prototype: cross-fade

2020-08-04 Thread Zeke Medley
I believe that this is the behavior specified by the CSSWG as well. From the spec : > In particular, this means that `cross-fade(white 50%, transparent 50%)` will produce a partially-transparent solid white image. (Rather than a partially

Re: Intent to prototype: cross-fade

2020-08-04 Thread Zeke Medley
2020 at 3:18 PM Jeff Muizelaar wrote: > Have other browsers expressed an interest in implementing the new syntax? > > On Tue, Jul 14, 2020 at 6:15 PM Zeke Medley wrote: > > > > Summary: > > > > cross-fade is a CSS function part of the CSS Image Module Level 4. &