You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Andrew Robinson <an...@gmail.com> on 2007/08/17 17:44:56 UTC

[Trindad] Skinning and the @

I am just wondering if there is any plans to support @ functionality
in a selector

this works:

@agent ie {
  #mainForm { ... }
}
@agent gecko {
  #mainForm { ... }
}

this doesn't, but would be really nice:

#mainForm {
  @agent ie { ... }
  @agent gecko { ... }
}

Re: [Trindad] Skinning and the @

Posted by Simon Lessard <si...@gmail.com>.
Hello Andrew,

We do have plan to better support per agent customization to match existing
XSS format.


Regards,

~ Simon

On 8/17/07, Andrew Robinson <an...@gmail.com> wrote:
>
> I am just wondering if there is any plans to support @ functionality
> in a selector
>
> this works:
>
> @agent ie {
>   #mainForm { ... }
> }
> @agent gecko {
>   #mainForm { ... }
> }
>
> this doesn't, but would be really nice:
>
> #mainForm {
>   @agent ie { ... }
>   @agent gecko { ... }
> }
>