Develop Your Own jQuery “ThemeRoller-Ready” Components

Posted by Scott on 06/11/2008

Topics:

ThemeRoller-ReadyThemeRoller-ReadyEarlier this week we released ThemeRoller, an Ajax-driven theme design app for jQuery UI. Now that the servers have recovered and things are running smoothly, we'd like to uncover a bit of an easter egg that we rolled right into the app: ThemeRoller not only allows you to style the official jQuery UI components, it also provides handy CSS hooks for designing your own ThemeRoller-Ready components! This article will introduce ThemeRoller's CSS API and show you how to use it in your own projects.

So How Does It Work?

Along with the CSS for jQuery's component set, ThemeRoller generates a block of classes that can be used to style ANY web application component, even components that don't use javascript at all! The following demo components are built using ThemeRoller's component classes. These classes follow the look and feel of any theme you create and even include many assets that jQuery UI's components don't use.

Example: A ThemeRoller-Ready Button

The button above uses these ThemeRoller classes, almost exclusively, for its appearance. To make the button ThemeRoller-Ready, we assigned it a class of ui-default-state, and on mouseover we added the class ui-hover-state. That alone makes it ready to accept ThemeRoller styles! From there we simply imported a ThemeRoller-generated stylesheet and added 2 styles for some padding and a hand cursor.

HTML:

<button type="submit" class="ui-default-state" name="submit">Submit Button</button>

CSS:

@import('jquery-ui-themeroller.smoothness.css'); /*ThemeRoller CSS*/
.ui-default-state { padding: .5em 1em; cursor: pointer; }

jQuery:

$('.ui-default-state').hover(
   function(){$(this).addClass('ui-hover-state');}, 
   function(){$(this).removeClass('ui-hover-state');}
);

More ThemeRoller-Ready Components

The following components use ThemeRoller classes in a similar fashion to the button above.

Button Bar

HTML:

<ul id="buttonBar" class="ui-reset ui-clearfix ui-component ui-hover-state">
	<li><a href="#" class="ui-default-state">Nav Item</a></li>
	<li><a href="#" class="ui-default-state">Nav Item</a></li>
	<li><a href="#" class="ui-default-state">Nav Item</a></li>
	<li><a href="#" class="ui-default-state">Nav Item</a></li>
</ul>

CSS:

@import('jquery-ui-themeroller.smoothness.css'); /*ThemeRoller CSS*/
.ui-default-state { padding: .5em 1em; cursor: pointer; }
#buttonBar { background-image: none; padding: 0; }
#buttonBar li, #buttonBar li a { float: left; margin: 0; padding: 0; list-style: none; text-decoration: none; }
#buttonBar li a  { padding: .5em 1em; border-width: 0; margin: 1px; text-decoration: none; display: block; }

Jump Menu

HTML:

<div id="jumpMenu" class="ui-component">
	<a href="#menu" id="trigger"class="ui-default-state"><span class="ui-arrow-down-default">Menu</span></a>
	<div id="menuContain">
		<ul id="menu" class="ui-active-state">
			<li><a href="#">Nav Item</a></li>
			<li><a href="#">Nav Item</a></li>
			<li><a href="#">Nav Item</a></li>
			<li><a href="#">Nav Item</a></li>
		</ul>
	</div>
</div>

CSS:

@import('jquery-ui-themeroller.smoothness.css'); /*ThemeRoller CSS*/
.ui-default-state { padding: .5em 1em; cursor: pointer; }
#trigger { text-decoration: none; display: block; width: 4em; position: relative; z-index: 2; }
#trigger span { padding-right: 1.3em; background-position: right 50%; margin-right: 3px; }
#trigger.ui-active-state { border-bottom: 0; }
#menuContain { position: relative; z-index: 1; }
#menu { position: absolute; width: 15em; background-image: none; padding: 0; list-style: none; margin: 0; top: -1px; }
#menu li a  { padding: .5em 1em; border: 0; text-decoration: none; display: block; cursor: pointer; }

Think of it as a CSS Component Framework

The additional styles generated by ThemeRoller can be thought of as an API to the themes it generates. The following table lists the ThemeRoller classes, their intended purposes, and what they look like.

ThemeRoller Class Documentation

Change Theme Below image image image image image image image image image image image

Class Description Appearance
.ui-component Component container element class. Sets font family and size.. abc
Content
.ui-component-content For content areas and menus in UI components. abc
.ui-component-content a For links within content areas. abc
States
.ui-default-state Default state for clickable items, title bars, etc.
.ui-hover-state Hover state for clickable items, title bars, etc.
.ui-active-state Active state for clickable items, title bars, etc.
Icons
.ui-arrow-right-default Right arrow icon default state.
.ui-arrow-right-hover Right arrow icon hover state.
.ui-arrow-right-active Right arrow icon active state.
.ui-arrow-left-default Left arrow icon default state.
.ui-arrow-left-hover Left arrow icon hover state.
.ui-arrow-left-active Left arrow icon active state.
.ui-arrow-down-default Down arrow icon default state.
.ui-arrow-down-hover Down arrow icon hover state.
.ui-arrow-down-active Down arrow icon active state.
.ui-arrow-up-default Up arrow icon default state.
.ui-arrow-up-hover Up arrow icon hover state.
.ui-arrow-up-active Up arrow icon active state.
.ui-arrow-up-default Up arrow icon default state.
.ui-arrow-up-hover Up arrow icon hover state.
.ui-arrow-up-active Up arrow icon active state.
.ui-arrows-leftright-default Left-Right Arrows icon default state
.ui-arrows-leftright-hover Left-Right Arrows icon hover state
.ui-arrows-leftright-active Left-Right Arrows icon active state
.ui-arrows-updown-default Up-Down Arrows icon default state
.ui-arrows-updown-hover Up-Down Arrows icon hover state
.ui-arrows-updown-active Up-Down Arrows icon active state
.ui-close-default Close icon default state
.ui-close-hover Close icon hover state
.ui-close-active Close icon active state
.ui-folder-closed-default Folder closed icon default state
.ui-folder-closed-hover Folder closed icon hover state
.ui-folder-closed-active Folder closed icon active state
.ui-folder-open-default Folder open icon default state
.ui-folder-open-hover Folder open icon hover state
.ui-folder-open-active Folder open icon active state
.ui-doc-default Document icon default state
.ui-doc-hover Document icon hover state
.ui-doc-active Document icon active state
.ui-minus-default Minus icon default state
.ui-minus-hover Minus icon hover state
.ui-minus-active Minus icon active state
.ui-plus-default Plus icon default state
.ui-plus-hover Plus icon hover state
.ui-plus-active Plus icon active state
Helper Classes
.ui-hidden Hidden elements n/a
.ui-accessible-hidden Accessible version of hidden elements n/a
.ui-reset Reset styles n/a
.ui-clearfix Clearfix styles n/a

ThemeRoller-Ready Coding Pointers

This system is new to us as well, but in the short time we've experimented with it, we've come across some interesting and useful tips to share. Here are some handy tidbits to consider.

ThemeRoller Javascript Tips

Setting Global Hover States

If you noticed, the jQuery behind our button example contains a selector for the '.ui-default-state' class. It finds elements with this class and adds the ThemeRoller hover class on mouseover, and removes it on mouseout. This is particularly handy because it talks to every element with that class, essentially driving all of your ThemeRoller-Ready element states in one command. However, be careful to scope it appropriately to prevent ThemeRoller-classed elements that should not have a hover state, such as a title bar in a modal box.

ThemeRoller CSS Tips

Keep Your Styles as Structural as Possible

This means leaving all colors, font info, and backgrounds out of your custom styles. Anything that can be styled should receive ThemeRoller theme styles.

Try to Make Visual Connections

It's common for ThemeRoller themes to have identical Active and Content states. When this occurs, components like tabs and the jumpmenu above can make smooth connections between clickable elements and their content areas. To do this, try overriding your active state class by setting its bottom border width to 0. Then, with a negative bottom value (bottom: -1px;), you can pull corresponding content right underneath the clickable element. See our jumpmenu above or jQuery UI's tab control for an example.

Use CSS Overrides

You might have noticed that although we're using the ui-default-state class with the buttons in the button bar, the buttons don't have the border color that comes with that class. In our custom styles, we've overridden the border style and used a margin instead, allowing the bar background to show through as a border on the buttons. We did this to eliminate the thick outlines that would appear when using borders on so many elements.

This border/margin technique isn't very interesting in itself, but we discovered while building it that you can override styles in ways that are less harmful to your component's Theme-ability. Using this border example, we could have simply written border: 0; to achieve our effect. But instead, we used border-width: 0;, which only overrides the border's width while keeping its style and color in memory. This might come in handy later if we decide we'd like one of the buttons to have a right border and would like it to use our theme's color.

There are additional patterns in setting your overrides that will allow you to retain portions of a theme you might need later. For example, you might want to use a certain ThemeRoller class for one of its rules, but then override the others. Generally, it is a good idea to write your override styles with the most specific rule possible. Some examples would be using background-color or background-image rather than background.

Just For Fun... Live Theming!

All 3 of the demo components are shown below so you can see how one css file cascades through all of them and changes their appearance. You can even paste in any ThemeRoller URL in the input below to update the theme to one you've created. Go wild! Note This little demo seems to be quirky in Safari; try in Firefox.

ThemeRoller-Ready Badges!

When you create a ThemeRoller-Ready component, you can post one of these badges with it on your site to show developers that it's compatible with ThemeRoller.

ThemeRoller-Ready ThemeRoller-Ready ThemeRoller-Ready ThemeRoller-Ready

Download all 4 (ZIP 30kb)

Go Give It a Try!

We're really excited at the potential of these ThemeRoller classes. jQuery has an incredible developer community and with plugins constantly being created, it would be incredibly helpful if developers could start making their components ThemeRoller-Ready. We encourage you to try it out and if you have any feedback or questions, please leave us a comment below. Enjoy!

Comments

I never thought of styling an entire website with Theme Roller themes, this is hot.

Comment by Marc Grabanski on 06/13  at  02:01 PM

Very cool! Great concept.

Comment by Aaron Lee on 06/18  at  04:26 AM

Great! I think I can use this concept in my project. thanks!

Comment by spawn li on 07/07  at  05:02 AM

I think this is great.  Say you wanted to style more than just the widgets in a page, though.  Do you have any plans on expanding the css classes you have to include more elements or more widgets?

For example, you have a box in one of your sidebars on your webpage.  Right now, the closest thing you have to a box is the ui-dialog* classes.  It would be great to have a ui-box* set of classes, too, or something to that effect.

The reason for asking is not so much for jquery, but if this was something to build a whole theme for, it seems like you would need some more, generic classes along with the good ones you have defined.

I hope Im making question clear.

Jesse Foster | jf26028

Comment by Jesse Foster on 07/07  at  10:04 PM

@Jesse: Thanks for commenting. Glad you like it.
The ThemeRoller styles do include a few classes for stateless content areas in an app, such as ui-component-content, which you could use to style container elements on a site. That class doesn’t come with a lot of configurable styles though, so the most it will do is a add a background color, border, and font color; it’s meant to be the class used on container elements within a widget, such as a tab pane.
Overall, the classes are more geared towards widgets within an application rather than the entire layout. The immediate goal is to help standardize jQuery plugin development (CSS-wise) so that plugins in the wild are easier to integrate into an existing design. It seems more common for widgets to be reused in this way as opposed to entire website layouts, with the exception of blog themes or something like that.
Anyway, I agree that it could be interesting to explore some more global options. But the tool may need a few more levers added to make it flexible enough for custom layout designs.

Comment by Scott (Filament) on 07/09  at  09:46 AM

Scott,

That makes sense.  I like what you guys are doing, and Im trying to (unfortunately) extrapolate it out into this global framework for building entire sites, when that is not necessarily the scope of your project.

I do agree with you, though, that a set of classes could be utilized to create an infrastructure for things like blogs or forums, where there are common ui entities, while an all encompassing sort of framework would be a lot trickier to pull off.

Anyway, I like what you guys have here.  I may attempt a blogengine theme here soon using this toolset, just to see how it goes.

Thanks, again, for your insight,

Jesse Foster | jf26028

Comment by Jesse Foster on 07/09  at  01:35 PM

Two questions:
1. Do the skinning capabilities also include shape? I’m guessing the lack of rounded corners was a deliberate decision.

2. Are there any plans to extend the support to other UI elements? For example, YUI has a much broader range of button types, though their skinning system is quite a bit more cumbersome.

Great project — looking forward to seeing it continue to develop!

Comment by Chad T. on 09/16  at  08:54 PM

@Chad: Thanks, glad you like!
Currently, we don’t have an option in ThemeRoller for corner radius, but it would make a nice addition. We considered rounded corners when we were designing UI’s component themes but it would have added a lot of overhead in markup so we opted out. Perhaps we can do it using CSS border-radius for the newer browsers, though.

As for your second question, the jQuery UI team is continuing to add new components to the set. They actually came out with some new components this week. We’ll get them into ThemeRoller as soon as we can!
Beyond that, we’re looking to the jQuery community to develop more UI elements and components using the ThemeRoller framework. Help us spread the word! grin

Comment by Scott (Filament) on 09/23  at  12:04 AM

Add a Comment:* required fields