Themeroller uses CSS classes to style individual elements.

Depending on the plugin, the CSS classes may be used to manage
behavior too, so no guarantees, OK?

Consider removing classes after the UI-elements are rendered.  Here
the vanilla-selector isolates the items you want plain-jane, unthemed.

Removing the hover-candy is probably pretty safe.
   $(vanilla-selector).removeClass("ui-state-hover");

This will surely NOT work since these tend to get injected at runtime
in response to events.
   $(vanilla-selector).removeClass("ui-state-default");
   $(vanilla-selector).removeClass("ui-state-active");

Therefore consider doing something like this.
   $(vanilla-selector).addClass("plainJain");

where
  <style>
    plainJain {color: ... !important;
               background-color: ... !important
               /* etc */
  </style>


Not tested <s>.  I hope this helps.

**--**  Steve



On Oct 30, 5:38 am, Gordon <gordon.mc...@ntlworld.com> wrote:
> I would like to use themeroller for designing stuff that's supposed to
> be part of the user interface of a web app, but there are some items I
> don't want styled by themeroller and use their own styles instead.
> For example, I don't want tabs or accordions to get themeroller
> styled.
>
> At the moment, I think all I really need styled with themeroller is
> dialogs.  I'll probably want other controls styled as well, such as
> sliders.  If this is possible, how do I do it

--

You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to jquery...@googlegroups.com.
To unsubscribe from this group, send email to 
jquery-ui+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en.


Reply via email to