Hello Chris,
You got a small error in your selector, the right one is
af|inputDate::launch-icon (note the double colons)
While at it, here's the rules for urls placed within skins.
All examples assume an application using /myApp context path and using the
following directory structure:
- /skins
- /mySkin
- /skinImages
- /images
Rules:
- If the url starts with "//", the url is considered server relative,
i.e. it won't prefix it with the context path
- url('//resourceApp/globalImages/logo.gif') --> /
resourceApp/globalImages/logo.gif
- If the url starts with "/", the url is considered application
relative, i.e. the context path will prefix the generated url
- url('/images/logo.gif') --> /myApp/images/logo.gif
- Otherwise, it's considered relative to the skin's stylesheet
- url('skinImages/logo.gif') --> Some url pointing to
/skins/mySkin/skinImages/logo.gif
Regards,
~ Simon
On 8/9/07, Chris Hane <[EMAIL PROTECTED]> wrote:
>
> How can I skin the inputDate launch icon?
>
> I have tried variations of this:
>
> af|inputDate:launch-icon {
> content:url(../ires/chris/images/dfb.gif);
> }
>
> When I use firebug it shows the icon being generated from:
>
> adf/images/dfb.gif
>
> and not my icon defined in the skin file.
>
>
> Is there anything obviously wrong with what I'm doing?
>
> Thanks,
> Chris....
>