blob: 54ace0bddee5679cf0803d224e2b4907e9f25d86 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* dojox.image.ThumbnailPicker */
.thumbWrapper .thumbNav {
background-repeat: no-repeat;
background-position: center;
padding-top: 1px;
width: 30px;
height: 100%;
}
.thumbOuter {
padding-bottom: 2px;
}
.thumbOuter.thumbHoriz {
width: 500px;
height: 85px;
}
.thumbOuter.thumbVert {
width: 100px;
height: 400px;
}
.thumbOuter .enabled {
background: transparent url("images/buttons.png") no-repeat center center;
}
.dj_ie6 .thumbOuter .enabled { background-image: url("images/buttons.gif"); }
.thumbOuter .thumbNav img {
width: 48px;
height: 75px;
}
.thumbOuter .thumbClickable div {
cursor: pointer;
}
.thumbOuter .prevHoriz {
background-position: -96px 12px;
position: relative;
float: left;
height: 100%;
}
.thumbOuter .nextHoriz {
background-position: -144px 12px;
position: relative;
float: right;
height: 100%;
/* margin-top: -85px;*/
}
.thumbOuter .prevVert {
background-position: 0px 0px;
height: 48px;
width:48px;
margin-left:24px;
}
.thumbOuter .nextVert {
background-position: -48px 0px;
height: 48px;
width:48px;
margin-left:24px;
}
.thumbWrapper img {
height: 75px;
max-width: 100px;
width: expression(this.width > 100 ? 100: true);/*IE Hack*/
}
.thumbWrapper .thumbNav .imageGalleryThumb {
height: 50px;
}
.thumbWrapper .thumbNotifier {
background-color: red;
width: 0px;
margin-left: 2px;
height: 5px;
font-size: 1%;/*IE hack to get around the Empty-Div bug*/
}
.thumbWrapper .thumbLoaded {
background-color: transparent;
}
.thumbScroller {
overflow-x: hidden;
overflow-y: hidden;
text-align: center;
}
.thumbHoriz .thumbScroller {
width: 500px;
height: 85px;
float: left;
}
.thumbVert .thumbScroller {
height: 500px;
width: 100px;
}
.thumbWrapper {
float: left;
}
.thumbVert .thumbWrapper {
width: 100px;
height: 10px;
}
.thumbHoriz .thumbWapper {
height:85px;
width: 10px;
}
.thumbWrapper.thumbHoriz div {
float: left;
padding-right: 2px;
}
.thumbWrapper.thumbVert {
width: 100px;
}
.thumbWrapper.thumbVert div {
padding-bottom: 2px;
}
|