tags:

views:

21

answers:

1

I want to use a theme in dojo, dojox and dijit. For example tundra. I need to import only

<link rel="stylesheet" href="dojo/dijit/themes/tundra/tundra.css" />

or i need more css to import all style that i need?

Do i need to import specific css for widgets like dialog?

+2  A: 

Add it to the body as well:

<body class="tundra">

I think that's it: class + proper CSS link.

The class hints at how to use different themes for different parts of a page. Just put the proper class on the parent of a sub-tree where you want to see the theme.

Eugene Lazutkin