blob: dc91d161f3d7515c5aa1b1202306e3bd413dc96a (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* Test file styles for Dijit widgets */
body {
background:#fff url("../images/testsBodyBg.gif") repeat-x top left;
padding:2em 2em 2em 2em;
}
h1.testTitle {
font-size:2em;
margin:0 0 1em 0;
}
/* Icons used in the tests */
.plusIcon, .plusBlockIcon {
background-image: url(../images/plus.gif);
background-repeat: no-repeat;
width: 16px;
height: 16px;
}
.plusBlockIcon {
display: block !important;
}
.noteIcon {
background-image: url(../images/note.gif);
background-repeat: no-repeat;
width: 20px;
height: 20px;
}
.flatScreenIcon {
background-image: url(../images/flatScreen.gif);
background-repeat: no-repeat;
width: 32px;
height: 32px;
}
.dijitTestNodeDialog {
position:absolute;
top:5px;
right:5px;
display:block;
width:200px;
visibility:hidden;
background-color:#fff !important;
color:#000 !important;
border:1px solid #000;
padding:5px;
}
.dijitTestNodeDialog table {
background-color:#fff !important;
}
.dijitTestNodeDialog td {
padding:3px;
}
.dijitTestNodeShowing {
visibility:visible;
}
.customFolderOpenedIcon, .customFolderClosedIcon {
background-image: url('../../demos/mail/icons.png'); /* mail icons sprite image */
background-repeat: no-repeat;
width: 16px;
height: 16px;
text-align: center;
padding-right:4px;
background-position: -44px;
}
.dj_ie6 .customFolderOpenedIcon, .dj_ie6 .customFolderClosedIcon {
background-image: url('../../demos/mail/icons.gif');
}
.customFolderClosedIcon {
background-position: -154px;
}
body .medium {
font-size: larger; /* help test widget sizing */
}
|