source: Dev/branches/rest-dojo-ui/client/dojox/widget/Wizard/Wizard.css @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 1.1 KB
Line 
1.dojoxWizard {
2        position:relative;
3}
4
5.dojoxWizardButtons {
6        position:absolute;
7        bottom:5px;
8        right:5px;
9}
10
11/* allot room for the buttons. never let a child overlap */
12.dojoxWizardContainer > * {
13        margin-bottom:39px;
14}
15
16.tundra .dojoxWizard {
17        background: #eeeeee;
18        border: #b7b7b7 1px solid;
19        padding: 2px;
20        border-radius:3pt;
21        -moz-border-radius:3pt;
22        -webkit-border-radius:4pt;
23        -o-border-radius:4pt;
24        -ms-border-radius:4pt;
25}
26
27.soria .dojoxWizard {
28        border:1px solid #b7b7b7;
29        padding:2px;
30        border-radius:3pt;
31        -moz-border-radius:3pt;
32        -webkit-border-radius:4pt;
33        -o-border-radius:4pt;
34        -ms-border-radius:4pt;
35}
36
37.claro .dojoxWizard {
38        border:1px solid #b5bcc7;
39        padding:2px;
40        border-radius:3pt;
41        -moz-border-radius:3pt;
42        -webkit-border-radius:4pt;
43        -o-border-radius:4pt;
44        -ms-border-radius:4pt;
45}
46
47/* remove the border and padding when we're in a dialog, it wraps us */
48.tundra .dijitDialogSingleChild .dojoxWizard,
49.soria .dijitDialogSingleChild .dojoxWizard,
50.claro .dijitDialogSingleChild .dojoxWizard {
51        border:none;
52        padding:0;
53}
54
55.claro .dijitDialogSingleChild .dojoxWizardButtons {
56        bottom:1px;
57}
Note: See TracBrowser for help on using the repository browser.