Re: directional images

The idea of the feature is to prevent having to create and then maintain (in
sync with the "normal" images) a set of flipped images.

On Thu, Feb 24, 2011 at 7:58 AM, Brad Kemper <brad.kemper@gmail.com> wrote:

>
> On Feb 23, 2011, at 1:00 PM, Tab Atkins Jr. wrote:
>
> > <ul dir=rtl>
> >  <li>ONE</li>
> > </ul>
> > <style>
> > ul {
> >  list-style-image: image( url("right-facing-arrow.jpg"), ltr );
> >  transition: list-style-image .2s;
> > }
> > ul:hover {
> >  list-style-image: image( url("highlight-right-arrow.jpg"), ltr );
> > }
> > </style>
>
> The parentheses embedded in parentheses are kind of hard to read. This
> seems like a place where we should have a direction pseudo-class, and then
> just use a different image (or have  image transformation properties for
> list-style-images, border-images, etc.).
>
> ul:ltr {
>  list-style-image: url("right-facing-arrow.jpg");
> }
> ul:rtl {
>  list-style-image: url("left-facing-arrow.jpg");
> } /* or... */
> ul:rtl {
>  list-style-image-transform: reflect(0deg);
> }  /* or, transformation is automatic for directions not specified by
> author */
>

Received on Thursday, 24 February 2011 16:22:13 UTC