toolbars_wev8.css
6.05 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/* Copyright 1999 Microsoft Corporation. All rights reserved. */
/* Author: Steve Isaac, Microsoft Corporation */
/* */
/*
This file (along with the companion toolbar_wev8.js file) implements full featured
toolbars completely in DHTML.
See the accompanying readme.htm for full documentation on how to use DHTML Toolbars.
*/
/* ---------------------------------------------------------------------------------------------- */
/* Public Toolbar classes */
/* ---------------------------------------------------------------------------------------------- */
.tbContentElement
{
POSITION: ABSOLUTE;
HEIGHT: 1px;
LEFT: 0px;
TOP: 0px;
WIDTH: 1px;
}
.tbToolbar
{
POSITION: ABSOLUTE;
BACKGROUND-COLOR: buttonface;
BORDER-BOTTOM: buttonshadow solid 1px;
BORDER-LEFT: buttonhighlight solid 1px;
BORDER-RIGHT: buttonshadow solid 1px;
BORDER-TOP: buttonhighlight solid 1px;
HEIGHT: 27px;
TOP:0;
LEFT:0;
}
.tbButton
{
POSITION: ABSOLUTE;
BACKGROUND-COLOR: buttonface;
BORDER-BOTTOM: buttonface solid 1px;
BORDER-LEFT: buttonface solid 1px;
BORDER-RIGHT: buttonface solid 1px;
BORDER-TOP: buttonface solid 1px;
TOP: 1px;
HEIGHT: 23px;
WIDTH: 23px;
}
.tbIcon
{
POSITION: ABSOLUTE;
LEFT: -1;
TOP: -1
}
.tbSeparator
{
POSITION: ABSOLUTE;
BORDER-LEFT: buttonshadow solid 1px;
BORDER-RIGHT: buttonhighlight solid 1px;
FONT-SIZE: 0px;
TOP: 1px;
HEIGHT: 22px;
WIDTH: 1px;
}
.tbMenu
{
POSITION: ABSOLUTE;
CURSOR: default;
BACKGROUND-COLOR: buttonface;
BORDER-BOTTOM: buttonface solid 1px;
BORDER-LEFT: buttonface solid 1px;
BORDER-RIGHT: buttonface solid 1px;
BORDER-TOP: buttonface solid 1px;
PADDING-TOP: 4;
PADDING-BOTTOM: 2;
TOP: 1px;
WIDTH: 1px;
FONT-FAMILY: MS Sans Serif;
FONT-SIZE: 8px;
}
.tbMenuItem
{
CURSOR: default;
FONT-FAMILY: MS Sans Serif;
FONT-SIZE: 8px;
DISPLAY: none;
}
.tbSubmenu
{
CURSOR: default;
FONT-FAMILY: MS Sans Serif;
FONT-SIZE: 8px;
DISPLAY: none;
}
.tbGeneral
{
POSITION: ABSOLUTE;
HEIGHT: 22px;
TOP:2;
}
/* ---------------------------------------------------------------------------------------------- */
/* Private styles */
/* ---------------------------------------------------------------------------------------------- */
.tbHandleDiv
{
POSITION: ABSOLUTE;
BACKGROUND-COLOR: buttonface;
BORDER-LEFT: buttonhighlight solid 1px;
BORDER-RIGHT: buttonshadow solid 1px;
BORDER-TOP: buttonhighlight solid 1px;
FONT-SIZE: 1px;
TOP: 1px;
HEIGHT: 22px;
WIDTH: 3px;
}
.tbButtonMouseOverUp
{
POSITION: ABSOLUTE;
BACKGROUND-COLOR: buttonface;
BORDER-BOTTOM: buttonshadow solid 1px;
BORDER-LEFT: buttonhighlight solid 1px;
BORDER-RIGHT: buttonshadow solid 1px;
BORDER-TOP: buttonhighlight solid 1px;
TOP: 1px;
HEIGHT: 23px;
WIDTH: 24px;
}
.tbButtonMouseOverDown
{
POSITION: ABSOLUTE;
BACKGROUND-COLOR: buttonface;
BORDER-BOTTOM: buttonhighlight solid 1px;
BORDER-LEFT: buttonshadow solid 1px;
BORDER-RIGHT: buttonhighlight solid 1px;
BORDER-TOP: buttonshadow solid 1px;
TOP: 1px;
HEIGHT: 23px;
WIDTH: 24px;
}
.tbButtonDown
{
POSITION: ABSOLUTE;
BACKGROUND-COLOR: gainsboro;
BORDER-BOTTOM: buttonhighlight solid 1px;
BORDER-LEFT: buttonshadow solid 1px;
BORDER-RIGHT: buttonhighlight solid 1px;
BORDER-TOP: buttonshadow solid 1px;
TOP: 1px;
HEIGHT: 23px;
WIDTH: 24px;
}
.tbIconDown
{
POSITION: ABSOLUTE;
LEFT: 0px;
TOP: 0px;
}
.tbIconDownPressed
{
POSITION: ABSOLUTE;
LEFT: 1px;
TOP: 1px;
}
.tbMenuBodyOuterDiv
{
CURSOR: default;
BACKGROUND-COLOR: menu;
BORDER-BOTTOM: threeddarkshadow solid 1px;
BORDER-LEFT: threedface solid 1px;
BORDER-RIGHT: threeddarkshadow solid 1px;
BORDER-TOP: threedface solid 1px;
POSITION: absolute;
}
.tbMenuBodyInnerDiv
{
CURSOR: default;
BORDER-BOTTOM: threedshadow solid 1px;
BORDER-LEFT: threedhighlight solid 1px;
BORDER-RIGHT: threedshadow solid 1px;
BORDER-TOP: threedhighlight solid 1px;
}
.tbMenuBodyTable
{
CURSOR: default;
BORDER-BOTTOM: menu solid 1px;
BORDER-LEFT: menu solid 1px;
BORDER-RIGHT: menu solid 1px;
BORDER-TOP: menu solid 1px;
}
.tbMenuSeparator
{
DISPLAY: none;
}
.tbMenuSeparatorTop
{
POSITION: RELATIVE;
BORDER-BOTTOM: buttonshadow solid 1px;
HEIGHT: 5px;
WIDTH: 94%;
FONT-SIZE: 0px;
}
.tbMenuSeparatorBottom
{
POSITION: RELATIVE;
BORDER-TOP: buttonhighlight solid 1px;
HEIGHT: 5px;
WIDTH: 94%;
FONT-SIZE: 0px;
}
.tbMenuBlankSpace
{
WIDTH: 20;
}
.tbSubmenuGlyph
{
FONT-FAMILY: webdings;
WIDTH: 20;
TEXT-ALIGN: right;
}
.tbMenuItemChecked
{
FONT-FAMILY: webdings;
WIDTH: 20;
TEXT-ALIGN: right;
}
.tbMenuIcon
{
BACKGROUND-COLOR: buttonface;
BORDER-BOTTOM: buttonface solid 1px;
BORDER-LEFT: buttonface solid 1px;
BORDER-RIGHT: buttonface solid 1px;
BORDER-TOP: buttonface solid 1px;
}
.tbMenuIconChecked
{
BACKGROUND-COLOR: threedlightshadow;
BORDER-BOTTOM: buttonhighlight solid 1px;
BORDER-LEFT: buttonshadow solid 1px;
BORDER-RIGHT: buttonhighlight solid 1px;
BORDER-TOP: buttonshadow solid 1px;
}
.tbMenuIconMouseOver
{
BACKGROUND-COLOR: buttonface;
BORDER-BOTTOM: buttonshadow solid 1px;
BORDER-LEFT: buttonhighlight solid 1px;
BORDER-RIGHT: buttonshadow solid 1px;
BORDER-TOP: buttonhighlight solid 1px;
}
.tbMenuIconCheckedMouseOver
{
BACKGROUND-COLOR: buttonface;
BORDER-BOTTOM: buttonhighlight solid 1px;
BORDER-LEFT: buttonshadow solid 1px;
BORDER-RIGHT: buttonhighlight solid 1px;
BORDER-TOP: buttonshadow solid 1px;
}
.tbScriptlet
{
POSITION: ABSOLUTE;
CURSOR: default;
VISIBILITY: hidden;
}
BODY
{
MARGIN: 0;
BORDER: 0;
BACKGROUND-COLOR: buttonface;
}