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