Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
/*
2
	Adds cosmetic styling to Dijit.  Users may swap with a custom theme CSS file.
3
*/
4
 
5
@import url("../dijit.css");
6
 
7
 
8
.dj_safari .tundra .dijitPopup {
9
	/* -webkit-border-radius: 5px; */
10
	-webkit-box-shadow: 0px 5px 10px #adadad;
11
}
12
 
13
/*
14
 * Control opacity of popups
15
 */
16
.tundra .dijitPopup div,
17
.tundra .dijitPopup table {
18
	opacity: 0.95;
19
}
20
 
21
/*****
22
		dijit.form.Button
23
		dijit.form.DropDownButton
24
		dijit.form.ComboButton
25
		dijit.form.ComboBox (partial)
26
 *****/
27
 
28
.tundra .dijitButtonNode {
29
	/* enabled state - inner */
30
	/* border:1px outset #a0a0a0; */
31
	border:1px solid #9b9b9b;
32
	vertical-align: middle;
33
	padding: 0.2em 0.2em;
34
	background:#e9e9e9 url("images/buttonEnabled.png") repeat-x top;
35
}
36
.dj_ie .tundra .dijitButtonNode {
37
	zoom: 1;
38
	padding-bottom: 0.1em;
39
}
40
 
41
/* button inner contents - labels, icons etc. */
42
.tundra .dijitButtonNode * {
43
	display: -moz-inline-box;
44
	display: inline-block;
45
	vertical-align: middle;
46
}
47
.dj_ie .tundra .dijitButtonNode * {
48
	zoom: 1;
49
	display:inline;
50
}
51
.tundra .dijitButtonText {
52
	padding: 0 0.3em;
53
}
54
 
55
.tundra .dijitComboBox .dijitButtonNode,
56
.tundra .dijitSpinner .dijitButtonNode {
57
	border: 0px;
58
	padding: 1px .4em;	/* the inner node will be vertically centered automatically because it's in a <td> */
59
}
60
 
61
.tundra .dijitA11yDownArrow,
62
.tundra .dijitDownArrowButton,
63
.tundra .dijitUpArrowButton {
64
	font-size: 0.75em;
65
	color: #848484;
66
}
67
 
68
 
69
.tundra .dijitButtonDisabled .dijitButtonNode,
70
.tundra .dijitToggleButtonDisabled .dijitButtonNode,
71
.tundra .dijitDropDownButtonDisabled .dijitButtonNode,
72
.tundra .dijitComboButtonDisabled .dijitButtonNode,
73
.tundra .dijitComboBoxDisabled,
74
.tundra .dijitSpinnerDisabled,
75
.tundra .dijitSpinnerDisabled .dijitButtonNode {
76
	/* disabled state - inner */
77
	border: 1px solid #d5d5d5;
78
	/*color:#b4b4b4;*/
79
	background:#e4e4e4 url("images/buttonDisabled.png") top repeat-x;
80
	opacity: 0.60; /* Safari, Opera and Mozilla */
81
}
82
.tundra .dijitButtonDisabled .dijitButtonNode *,
83
.tundra .dijitToggleButtonDisabled .dijitButtonNode *,
84
.tundra .dijitDropDownButtonDisabled .dijitButtonNode *,
85
.tundra .dijitComboButtonDisabled .dijitButtonNode *,
86
.tundra .dijitSpinnerDisabled .dijitButtonNode * {
87
	filter: gray() alpha(opacity=50); /* IE */
88
}
89
 
90
.tundra .dijitButtonHover .dijitButtonNode,
91
.tundra .dijitToggleButtonHover .dijitButtonNode,
92
.tundra .dijitDropDownButtonHover .dijitButtonNode,
93
.tundra .dijitComboButtonHover .dijitButtonContents,
94
.tundra .dijitComboButtonDownArrowHover .dijitDownArrowButton,
95
.tundra .dijitComboBoxHover .dijitDownArrowButton,
96
.tundra .dijitSpinnerUpArrowHover .dijitUpArrowButton,
97
.tundra .dijitSpinnerDownArrowHover .dijitDownArrowButton {
98
	/* hover state - inner */
99
	/* TODO: change from Hover to Selected so that button is still highlighted while drop down is being used */
100
	border-color:#366dba;
101
	color:#366dba;
102
	background:#f1f6fc url("images/buttonHover.png") repeat-x bottom;
103
}
104
 
105
.tundra .dijitButtonActive .dijitButtonNode,
106
.tundra .dijitToggleButtonActive .dijitButtonNode,
107
.tundra .dijitDropDownButtonActive .dijitButtonNode,
108
.tundra .dijitComboButtonActive .dijitButtonContents,
109
.tundra .dijitDownArrowActive .dijitDownArrowButton,
110
.tundra .dijitComboBoxActive .dijitDownArrowButton {
111
	/* active state - inner (for when you are pressing a normal button, or
112
	 * when a toggle button is in a depressed state
113
	 */
114
	border-color:#366dba;
115
	background: #ededed url("images/buttonActive.png") bottom repeat-x;
116
}
117
 
118
.tundra .dijitToolbar {
119
	border: 1px solid #9b9b9b;
120
	background:#e9e9e9 url("images/buttonEnabled.png") repeat-x top;
121
}
122
 
123
.tundra .dijitToolbar * {
124
	padding: 0px;
125
	margin: 0px;
126
	/* #margin-top: -1px; */
127
	/*IE*/
128
}
129
.dj_ie .tundra .dijitToolbar {
130
	padding-bottom: 1px;
131
}
132
 
133
.tundra .dijitToolbar .dijitButtonNode {
134
	padding: 0px;
135
	margin: 0px;
136
	border: 1px solid transparent;
137
	background: none;
138
	_margin: 1px;
139
	_padding: 0px 1px 0px 1px;
140
	_border: 0px;
141
}
142
 
143
.tundra .dijitToolbar .dijitToggleButtonChecked .dijitButtonNode {
144
	background-color:#C1D2EE;
145
	border:1px solid #316AC5;
146
}
147
.tundra .dijitToolbar .dijitToggleButtonCheckedHover .dijitButtonContents {
148
	border-color: #366dba;
149
	background-color:transparent;
150
}
151
.dj_ie6 .tundra .dijitToolbar .dijitButtonNode {
152
	/* workaround no transparent border support in IE6*/
153
	border-color: #e9e9e9;
154
}
155
 
156
.tundra .dijitToolbar .dijitButtonHover .dijitButtonNode,
157
.tundra .dijitToolbar .dijitToggleButtonHover .dijitButtonNode,
158
.tundra .dijitToolbar .dijitDropDownButtonHover .dijitButtonNode {
159
	/* TODO: change this from Hover to Selected so that button is still highlighted while drop down is being used */
160
	border-color: #366dba;
161
	/* IE hackery */
162
	_border: 1px solid #366dba;
163
	_margin: -1px 0px 0px 0px;
164
	_padding: 0px;
165
}
166
 
167
.dijitToolbarSeparator {
168
	background: url('images/editor.gif');
169
	height: 18px;
170
	width: 5px;
171
	padding: 0px 1px 0px 1px;
172
	margin: 0px;
173
}
174
 
175
.tundra .dijitToolbar .dijitToolbarSeparator {
176
	background: url('images/editor.gif');
177
}
178
 
179
/* ComboBox-icon-specific */
180
.tundra .dijitComboBox .dijitDownArrowButtonChar {
181
	/* visibility:hidden;  */
182
	display:none;
183
}
184
.dijit_a11y .dijitComboBox .dijitDownArrowButtonChar {
185
	display:inline;
186
}
187
.tundra .dijitComboBox .dijitDownArrowButtonInner {
188
	width:16px;
189
	height:16px;
190
	background:url("images/arrowDown.png") no-repeat center center;
191
}
192
.dj_ie6 .tundra .dijitComboBox .dijitDownArrowButtonInner {
193
	background-image:url("images/arrowDown.gif");
194
}
195
.tundra .dijitComboBoxHover .dijitDownArrowButtonInner {
196
	/* TODO: url("images/arrowDownHover.png") but in IE6 it flickers some? */
197
}
198
 
199
 
200
/*****
201
		dijit.form.NumberSpinner
202
		override for the shorter stacked buttons
203
 *****/
204
 
205
.tundra .dijitSpinner .dijitButtonNode {
206
	padding: 0 .4em 0 .4em;
207
}
208
 
209
 
210
/****
211
		dijit.form.TextBox
212
		dijit.form.ValidationTextBox
213
		dijit.form.SerializableTextBox
214
		dijit.form.RangeBoundTextBox
215
		dijit.form.NumberTextBox
216
		dijit.form.CurrencyTextBox
217
		dijit.form.NumberSpinner
218
		dijit.form.ComboBox (partial)
219
 ****/
220
 
221
.tundra .dijitInputField INPUT,
222
.tundra .dijitTextBox,
223
.tundra .dijitComboBox,
224
.tundra .dijitSpinner {
225
	margin: 0em 0.1em 0.0em 0.1em;
226
}
227
 
228
.tundra .dijitTextBox,
229
.tundra .dijitComboBox,
230
.tundra .dijitSpinner,
231
.tundra .dijitInlineEditor input,
232
.tundra .dijitTextArea {
233
	/* 	For all except dijit.form.NumberSpinner:  the actual input element.
234
		For TextBox, ComboBox, Spinner: the table that contains the input.
235
		Otherwise the actual input element.
236
	*/
237
	background:#fff url("images/validationInputBg.png") repeat-x top left;
238
	#background:#fff url('images/validationInputBg.gif') repeat-x top left;
239
	border:1px solid #9b9b9b;
240
	line-height: normal;
241
}
242
 
243
.dj_safari .tundra INPUT.dijitTextBox {
244
	padding:0.15em 0em; /* make it roughly the same size as a validation input box */
245
}
246
 
247
.dj_ie .tundra INPUT.dijitTextBox,
248
.dj_ie .tundra TD.dijitInputField,
249
.dj_ie .tundra .dijitInputField INPUT {
250
	height: 1.2em; /* needed since the INPUT is position:absolute */
251
}
252
 
253
.tundra .dijitComboBox .dijitButtonNode,
254
.tundra .dijitSpinner .dijitButtonNode {
255
	/* line between the input area and the drop down button */
256
	border-left:1px solid #9b9b9b;
257
}
258
.tundra .dijitSpinner .dijitDownArrowButton {
259
	border-top:1px solid #9b9b9b;	/* line between top and bottom arrow */
260
}
261
 
262
.tundra .dijitTextBoxFocused,
263
.tundra .dijitComboBoxFocused,
264
.tundra .dijitSpinnerFocused {
265
	/* input field when focused (ie: typing affects it) */
266
	border-color:#366dba;
267
}
268
.tundra .dijitComboBoxFocused .dijitButtonNode, .tundra .dijitSpinnerFocused .dijitButtonNode {
269
	border-left:1px solid #366dba;
270
}
271
.tundra .dijitSpinnerFocused .dijitDownArrowButton {
272
	border-top:1px solid #366dba;
273
}
274
 
275
.tundra .dijitTextBoxError,
276
.tundra .dijitComboBoxError,
277
.tundra .dijitSpinnerError {
278
	border:1px solid #f3d118;
279
	background-color:#f9f7ba;
280
	background-image:none;
281
}
282
.dj_ie6 .tundra .dijitTextBoxError input,
283
.dj_ie6 .tundra .dijitComboBoxError input,
284
.dj_ie6 .tundra .dijitSpinnerError input {
285
	/* background-color: transparent on an <input> doesn't work on IE6 */
286
	background-color:#f9f7ba !important;
287
}
288
 
289
.tundra .dijitTextBoxErrorFocused,
290
.tundra .dijitComboBoxErrorFocused,
291
.tundra .dijitSpinnerErrorFocused {
292
	background-color:#ff6;
293
	background-image:none;
294
}
295
.dj_ie6 .tundra .dijitTextBoxErrorFocused input,
296
.dj_ie6 .tundra .dijitComboBoxErrorFocused input,
297
.dj_ie6 .tundra .dijitSpinnerErrorFocused input {
298
	/* background-color: transparent on an <input> doesn't work on IE6 */
299
	background-color:#ff6 !important;
300
}
301
 
302
/* Validation errors  */
303
.tundra .dijitValidationIcon {
304
	/* prevent height change when widget goes from valid to invalid state, and
305
	 * workaround browser (FF and safari) sizing bugs when last table column is empty or display:null
306
	 */
307
	display: block;
308
	width: 16px;
309
	height: 16px;
310
	background-repeat: no-repeat;
311
	background-image: url('images/warning.png');
312
	visibility: hidden;
313
}
314
.tundra .dijitValidationIconText {
315
	display: none;
316
}
317
 
318
.tundra .dijitTextBoxError .dijitValidationIcon,
319
.tundra .dijitComboBoxError .dijitValidationIcon,
320
.tundra .dijitSpinnerError .dijitValidationIcon {
321
	visibility: visible;
322
}
323
 
324
/*
325
 *  CheckBox and Radio Widgets,
326
 *	and the CSS to embed a checkbox or radio icon inside a ToggleButton.
327
 *
328
 *	Order of images in the default sprite (from L to R, checkbox and radio in same image):
329
 *		checkbox	normal 	 - checked
330
 *							 - unchecked
331
 *					disabled - checked
332
 *							 - unchecked
333
 *					hover 	 - checked
334
 *							 - unchecked
335
 *
336
 *		radio		normal 	 - checked
337
 *							 - unchecked
338
 *					disabled - checked
339
 *							 - unchecked
340
 *					hover 	 - checked
341
 *							 - unchecked
342
*/
343
 
344
.tundra .dijitToggleButton .dijitCheckBox,
345
.tundra .dijitToggleButton .dijitRadio,
346
.tundra .dijitToggleButton .dijitCheckBoxIcon,
347
.tundra .dijitToggleButton .dijitRadioIcon {
348
	background-image: url('images/checkmarkNoBorder.gif');
349
}
350
 
351
.tundra .dijitCheckBox,
352
.tundra .dijitRadio,
353
.tundra .dijitCheckBoxIcon,		/* inside a toggle button */
354
.tundra .dijitRadioIcon	{		/* inside a toggle button */
355
	background-image: url('images/checkmark.gif'); /* checkbox sprite image */
356
	background-repeat: no-repeat;
357
	width: 16px;
358
	height: 16px;
359
	overflow: visible;
360
	margin: 0;
361
	padding: 0;
362
}
363
 
364
.tundra .dijitCheckBox,
365
.tundra .dijitToggleButton .dijitCheckBoxIcon {
366
	/* unchecked */
367
	background-position: -16px;
368
}
369
 
370
.tundra .dijitCheckBoxChecked,
371
.tundra .dijitToggleButtonChecked .dijitCheckBoxIcon {
372
	/* checked */
373
	background-position: 0px;
374
}
375
 
376
.tundra .dijitCheckBoxDisabled {
377
	/* disabled */
378
	background-position: -48px;
379
}
380
 
381
.tundra .dijitCheckBoxCheckedDisabled {
382
	/* disabled but checked */
383
	background-position: -32px;
384
}
385
 
386
.tundra .dijitCheckBoxHover,
387
.tundra .dijitCheckBoxFocused {
388
	/* hovering over an unchecked enabled checkbox */
389
	background-position: -80px;
390
}
391
 
392
.tundra .dijitCheckBoxCheckedHover,
393
		.tundra .dijitCheckBoxCheckedFocused {
394
	/* hovering over a checked enabled checkbox */
395
	background-position: -64px;
396
}
397
 
398
.tundra .dijitRadio,
399
.tundra .dijitToggleButton .dijitRadioIcon {
400
	/* unselected */
401
	background-position: -112px;
402
}
403
 
404
.tundra .dijitRadioChecked,
405
.tundra .dijitToggleButtonChecked .dijitRadioIcon {
406
	/* selected */
407
	background-position: -96px;
408
}
409
 
410
.tundra .dijitRadioCheckedDisabled {
411
	/* selected but disabled */
412
	background-position: -128px;
413
}
414
 
415
.tundra .dijitRadioDisabled {
416
	/* unselected and disabled */
417
	background-position: -144px;
418
}
419
 
420
.tundra .dijitRadioHover,
421
.tundra .dijitRadioFocused {
422
	/* hovering over an unselected enabled radio button */
423
	background-position: -176px;
424
}
425
 
426
.tundra .dijitRadioCheckedHover,
427
.tundra .dijitRadioCheckedFocused {
428
	/* hovering over a selected enabled radio button */
429
	background-position: -160px;
430
}
431
 
432
/* Menu */
433
.tundra .dijitMenu {
434
	border: 1px solid #9b9b9b;
435
	margin: 0px;
436
	padding: 0px;
437
}
438
 
439
.tundra .dijitMenuItem {
440
	background-color: #f7f7f7;
441
	font: menu;
442
	margin: 0;
443
}
444
.tundra .dijitMenuPreviousButton, .tundra .dijitMenuNextButton {
445
	font-style: italic;
446
}
447
.tundra .dijitMenuItem TD {
448
	padding:2px;
449
}
450
 
451
.tundra .dijitMenuItemHover {
452
	background-color: #808080; /* #95a0b0; #555555; #aaaaaa; #646464;  #60a1ea; #848484; */
453
	color:#fff;
454
}
455
 
456
.tundra .dijitMenuItemIcon {
457
	width: 16px;
458
	height: 16px;
459
	/* padding-right: 3px; */
460
}
461
 
462
.tundra .dijitMenuExpand {
463
	display:none;
464
}
465
.tundra .dijitMenuExpandEnabled {
466
	/* margin-top:4px;  */
467
	width:16px;
468
	height:16px;
469
	background:url('images/arrowRight.png') no-repeat center center;
470
	display:block;
471
}
472
.dj_ie6 .tundra .dijitMenuExpandEnabled {
473
	background-image:url('images/arrowRight.gif');
474
}
475
.tundra .dijitMenuExpandInner {
476
	display:none;
477
}
478
 
479
.tundra .dijitMenuSeparator {
480
	background-color: #f7f7f7;
481
}
482
 
483
/* separator can be two pixels -- set border of either one to 0px to have only one */
484
.tundra .dijitMenuSeparatorTop {
485
	border-bottom: 1px solid #9b9b9b; /*97adcb; */
486
}
487
 
488
.tundra .dijitMenuSeparatorBottom {
489
	border-top: 1px solid #e8e8e8;
490
}
491
 
492
/* TitlePane */
493
 
494
.tundra .dijitTitlePane .dijitTitlePaneTitle {
495
	background: #cccccc;
496
	background:#fafafa url("images/titleBarBg.gif") repeat-x bottom left;
497
	border:1px solid #bfbfbf;
498
	padding:4px 4px 2px 4px;
499
	cursor: pointer;
500
}
501
.dj_ie7 .dijitTitlePaneTextNode {
502
	display:inline;
503
}
504
 
505
/* TODO: merge these, and all other icons to a series of background-image:() and background-position: -16*n px styles */
506
.tundra .dijitTitlePane .dijitArrowNode {
507
	width:16px;
508
	height:16px;
509
	float:right;
510
}
511
.tundra .dijitTitlePane .dijitClosed .dijitArrowNode {
512
	background:url('images/arrowRight.png') no-repeat center center;
513
}
514
 
515
.tundra .dijitTitlePaneFocused .dijitTitlePaneTextNode {
516
	text-decoration:underline;
517
}
518
 
519
.dj_ie6 .tundra .dijitTitlePane .dijitClosed .dijitArrowNode {
520
	background-image:url('images/arrowRight.gif');
521
}
522
.tundra .dijitTitlePane .dijitOpen .dijitArrowNode {
523
	background:url('images/arrowDown.png') no-repeat center center;
524
}
525
.dj_ie6 .tundra .dijitTitlePane .dijitOpen .dijitArrowNode {
526
	background-image:url('images/arrowDown.gif');
527
}
528
.tundra .dijitTitlePane .dijitArrowNodeInner {
529
	visibility:hidden;
530
}
531
.dijit_a11y .dijitTitlePane .dijitArrowNodeInner {
532
	visibility:visible;
533
}
534
 
535
.tundra .dijitTitlePaneTitle .dijitOpenCloseArrowOuter {
536
	margin-right:5px;
537
}
538
 
539
.tundra .dijitOpen .dijitTitlePaneTitle .dijitOpenCloseArrowOuter {
540
	position:relative;
541
	top:2px;
542
}
543
 
544
.tundra .dijitTitlePaneContentOuter {
545
	background: #ffffff;
546
	border:1px solid #bfbfbf;
547
	border-top: 1px solid #cddde9;	/* w/out this, an <h1> on the top line causes a gap between the .content and .label */
548
}
549
.tundra .dijitTitlePaneContentInner {
550
	padding:10px;
551
}
552
/* force hasLayout to ensure borders etc, show up */
553
.dj_ie6 .tundra .dijitTitlePaneContentOuter,
554
.dj_ie6 .tundra .dijitTitlePane .dijitTitlePaneTitle {
555
	zoom: 1;
556
}
557
.tundra .dijitClickableRegion {
558
	background-color : #ffc !important;
559
}
560
 
561
/* Tabs */
562
 
563
.tundra .dijitTabPaneWrapper {
564
	/*
565
	overflow: hidden;
566
	*/
567
	background:#fff;
568
	border:1px solid #ccc;
569
}
570
 
571
.tundra .dijitTab {
572
	line-height:normal;
573
	margin-right:5px;	/* space between one tab and the next in top/bottom mode */
574
	padding:0px;
575
	border:1px solid #ccc;
576
	background:#e2e2e2 url("images/tabEnabled.png") repeat-x;
577
}
578
 
579
.tundra .dijitAlignLeft .dijitTab,
580
.tundra .dijitAlignRight .dijitTab {
581
	margin-right:0px;
582
	margin-bottom:5px;	/* space between one tab and the next in left/right mode */
583
}
584
 
585
.tundra .dijitTabInnerDiv {
586
	padding:6px 10px 4px 10px;
587
	border-left:1px solid #fff;
588
	border-bottom:1px solid #fff;
589
}
590
 
591
.tundra .dijitTabHover,
592
.tundra .dijitTabCloseButtonHover {
593
	color: #243C5F;
594
	border-top-color:#92a0b3;
595
	border-left-color:#92a0b3;
596
	border-right-color:#92a0b3;
597
	background:#e2e2e2 url("images/tabHover.png") repeat-x bottom;
598
}
599
 
600
.dj_ie6 .tundra .dijitTabHover,
601
.dj_ie6 .tundra .dijitTabCloseButtonHover {
602
	background-image: url("images/tabHover.gif");
603
}
604
 
605
.tundra .dijitTabChecked,
606
.tundra .dijitTabCloseButtonChecked
607
{
608
	/* the selected tab (with or without hover) */
609
	background-color:#fff;
610
	border-color: #ccc;
611
	background-image:none;
612
}
613
 
614
/* make the active tab white on the side next to the content pane */
615
.tundra .dijitAlignTop .dijitTabChecked,
616
.tundra .dijitAlignTop .dijitTabCloseButtonChecked
617
{
618
	border-bottom-color:white;
619
	vertical-align:bottom;
620
}
621
 
622
.tundra .dijitAlignBottom .dijitTabChecked,
623
.tundra .dijitAlignBottom .dijitTabCloseButtonChecked
624
{
625
	border-top-color:white;
626
	-moz-border-radius:2px 2px 0px 0px;	/* eliminate some border detritrus on moz */
627
}
628
 
629
.tundra .dijitAlignLeft .dijitTabChecked,
630
.tundra .dijitAlignLeft .dijitTabCloseButtonChecked
631
{
632
	border-right-color:white;
633
}
634
 
635
.tundra .dijitAlignRight .dijitTabChecked,
636
.tundra .dijitAlignRight .dijitTabCloseButtonChecked
637
{
638
	border-left-color:white;
639
}
640
 
641
 
642
/* make space for a positioned close button */
643
.tundra .dijitTab .dijitClosable {
644
	position: relative;
645
	padding:6px 20px 4px 10px;
646
}
647
 
648
.tundra .dijitTab .dijitClosable .closeImage {
649
	position:absolute;
650
	top: 7px;
651
	right: 3px;
652
	height: 12px;
653
	width: 12px;
654
	padding: 0;
655
	margin: 0;
656
	background: url("images/tabClose.png") no-repeat right top;
657
}
658
.dj_ie6 .dijitTab .dijitClosable .closeImage {
659
	background-image:url("images/tabClose.gif");
660
}
661
 
662
.tundra .dijitTabCloseButton .dijitClosable .closeImage {
663
	background-image : url("images/tabClose.png");
664
}
665
.dj_ie6 .tundra .dijitTabCloseButton .dijitClosable .closeImage {
666
	background-image : url("images/tabClose.gif");
667
}
668
 
669
.tundra .dijitTabCloseButtonHover .dijitClosable .closeImage {
670
	background-image : url("images/tabCloseHover.png");
671
}
672
.dj_ie6 .tundra .dijitTabCloseButtonHover .dijitClosable .closeImage {
673
	background-image : url("images/tabCloseHover.gif");
674
}
675
 
676
.tundra .dijitAlignLeft .dijitTab .dijitClosable {
677
	padding:6px 10px 4px 20px;
678
}
679
 
680
/* correct for IE6.
681
    We cant force hasLayout as that blows out the shrink wrapped tabs
682
    ..so we shim in the closeImage position properties instead
683
*/
684
.dj_ie6 .tundra .dijitAlignLeft .dijitTab .dijitClosable .closeImage {
685
	left:-20px;
686
}
687
 
688
.tundra .dijitAlignBottom .dijitTab .dijitClosable .closeImage {
689
	top: auto;
690
	bottom: 7px;
691
	right: 3px;
692
}
693
 
694
.tundra .dijitAlignLeft .dijitTab .dijitClosable .closeImage {
695
	top: 7px;
696
	left: 3px;
697
}
698
 
699
/* SplitContainer */
700
 
701
.tundra .dijitSplitContainerSizerH {
702
	background:url("images/splitContainerSizerH.png") repeat-y #fff;
703
	border:0;
704
	border-left:1px solid #bfbfbf;
705
	border-right:1px solid #bfbfbf;
706
	width:7px;
707
}
708
 
709
.tundra .dijitSplitContainerSizerH .thumb {
710
	background:url("images/splitContainerSizerH-thumb.png") no-repeat #ccc;
711
	left:1px;
712
	width:3px;
713
	height:19px;
714
}
715
 
716
.tundra .dijitSplitContainerSizerV {
717
	background:url("images/splitContainerSizerV.png") repeat-x #fff;
718
	border:0;
719
	border-top:1px solid #bfbfbf;
720
	border-bottom:1px solid #bfbfbf;
721
	height:7px;
722
}
723
 
724
.tundra .dijitSplitContainerSizerV .thumb {
725
	background:url("images/splitContainerSizerV-thumb.png") no-repeat #ccc;
726
	top:1px;
727
	width:19px;
728
	height:3px;
729
}
730
 
731
 
732
/* Dialog */
733
 
734
.tundra .dijitDialog {
735
	background: #eee;
736
	border: 1px solid #999;
737
	-webkit-box-shadow: 0px 5px 10px #adadad;
738
}
739
 
740
.tundra .dijitDialog .dijitDialogTitle {
741
	border-top: none;
742
	border-left: none;
743
	border-right: none;
744
}
745
 
746
.tundra .dijitDialog .dijitDialogPaneContent {
747
	background: #ffffff;
748
	border:none;
749
	border-top: 1px solid #ccc; /* #cddde9;	/* w/out this, an <h1> on the top line causes a gap between the .content and .label */
750
	padding:10px;
751
 
752
}
753
 
754
.tundra .dijitDialogTitleBar {
755
	/* outer container for the titlebar of the dialog */
756
	background: #fafafa url("images/titleBarBg.gif") repeat-x bottom left;
757
	/* border: 1px solid #bfbfbf; */
758
	padding: 4px 8px 2px 4px;
759
	cursor: move;
760
	outline:0; /* remove this line if keyboard focus on dialog startup is an issue. tab still takes you to first focusable element */
761
}
762
 
763
.tundra .dijitDialogTitle {
764
	/* typography and styling of the dialog title */
765
	font-weight: bold;
766
	padding: 8px 12px 8px 12px;
767
	outline:0;
768
}
769
 
770
.tundra .dijitDialogCloseIcon {
771
	/* the default close icon for the dialog */
772
	background : url("images/tabClose.png") no-repeat right top;
773
	float: right;
774
	position: absolute;
775
	vertical-align: middle;
776
	right: 5px;
777
	top: 5px;
778
	height: 22px;
779
	width: 22px;
780
	cursor: pointer;
781
}
782
.dj_ie6 .tundra .dijitDialogCloseIcon {
783
	background-image: url("images/tabClose.gif");
784
}
785
 
786
.tundra .dijitDialogContent {
787
	/* the body of the dialog */
788
	padding: 8px;
789
}
790
 
791
/*Tooltip*/
792
 
793
.tundra .dijitTooltip,
794
.tundra .dijitTooltipDialog {
795
	/* the outermost dom node, holding the connector and container */
796
	opacity: 0.95;
797
	background: transparent;	/* make the area on the sides of the arrow transparent */
798
}
799
 
800
.dijitTooltipBelow {
801
	/* leave room for arrow above content */
802
	padding-top: 13px;
803
}
804
 
805
.dijitTooltipAbove {
806
	/* leave room for arrow below content */
807
	padding-bottom: 13px;
808
}
809
 
810
.tundra .dijitTooltipContainer {
811
	/*
812
		The part with the text.
813
 
814
		NOTE:
815
			FF doesn't clip images used as CSS bgs if you specify a border
816
			radius. If you use a solid color, it does. Webkit gets it right.
817
			Sigh.
818
		background: #ffffff url("images/popupMenuBg.gif") repeat-x bottom left;
819
	*/
820
	background-color: #fafafa;
821
	border:1px solid #b6c7d5;
822
	padding:0.45em;
823
	border-radius: 6px;
824
	-moz-border-radius: 7px;
825
	-webkit-border-radius: 6px;
826
}
827
 
828
.tundra .dijitTooltipConnector {
829
	/* the arrow piece */
830
	border:0px;
831
	z-index: 2;
832
}
833
 
834
.tundra .dijitTooltipABRight .dijitTooltipConnector {
835
	left: auto !important;
836
	right: 3px;
837
}
838
 
839
.tundra .dijitTooltipBelow .dijitTooltipConnector {
840
	/* the arrow piece for tooltips below an element */
841
	top: 0px;
842
	left: 3px;
843
	background:url("images/tooltipConnectorUp.png") no-repeat top left;
844
	width:16px;
845
	height:14px;
846
}
847
 
848
.dj_ie6 .tundra .dijitTooltipBelow .dijitTooltipConnector {
849
	background-image: url("images/tooltipConnectorUp.gif");
850
}
851
 
852
.tundra .dijitTooltipAbove .dijitTooltipConnector {
853
	/* the arrow piece for tooltips above an element */
854
	bottom: 0px;
855
	left: 3px;
856
	background:url("images/tooltipConnectorDown.png") no-repeat top left;
857
	width:16px;
858
	height:14px;
859
}
860
.dj_ie6 .tundra .dijitTooltipAbove .dijitTooltipConnector {
861
	background-image: url("images/tooltipConnectorDown.gif");
862
}
863
 
864
.tundra .dijitTooltipLeft {
865
	padding-right: 13px;
866
}
867
.dj_ie6 .tundra .dijitTooltipLeft {
868
	padding-right: 15px;
869
}
870
.tundra .dijitTooltipLeft .dijitTooltipConnector {
871
	/* the arrow piece for tooltips to the left of an element, bottom borders aligned */
872
	right: 0px;
873
	bottom: 7px;
874
	background:url("images/tooltipConnectorRight.png") no-repeat top left;
875
	width:16px;
876
	height:14px;
877
}
878
.dj_ie6 .tundra .dijitTooltipLeft .dijitTooltipConnector {
879
	background-image: url("images/tooltipConnectorRight.gif");
880
}
881
 
882
.tundra .dijitTooltipRight {
883
	padding-left: 13px;
884
}
885
.tundra .dijitTooltipRight .dijitTooltipConnector {
886
	/* the arrow piece for tooltips to the right of an element, bottom borders aligned */
887
	left: 0px;
888
	bottom: 7px;
889
	background:url("images/tooltipConnectorLeft.png") no-repeat top left;
890
	width:16px;
891
	height:14px;
892
}
893
.dj_ie6 .tundra .dijitTooltipRight .dijitTooltipConnector {
894
	background-image: url("images/tooltipConnectorLeft.gif");
895
}
896
 
897
/* Accordion */
898
 
899
.tundra .dijitAccordionPane-selected {
900
	/* background-color:#85aeec; */
901
	background-color: #e7e7e7;
902
}
903
 
904
.tundra .dijitAccordionPane .dijitAccordionTitle {
905
	background:#fafafa url("images/titleBar.png") repeat-x bottom left;
906
	border-top: 1px solid #bfbfbf;
907
	padding:4px 4px 2px 4px;
908
}
909
 
910
.tundra .dijitAccordionPane-selected .dijitAccordionTitle {
911
	background: #ededed url("images/buttonActive.png") bottom repeat-x;
912
	font-weight: bold;
913
	border-top: 1px solid #aaaaaa;
914
	padding: 4px 4px 2px 4px;
915
}
916
.tundra .dijitAccordionPaneFocused .dijitAccordionText {
917
	text-decoration:underline !important;
918
	/*border-left:1px solid #999;
919
	border-right:1px solid #999;
920
	border-top:1px solid #999; */
921
}
922
 
923
.tundra .dijitAccordionPane .dijitAccordionArrow {
924
	background:url("images/arrowUp.png") no-repeat;
925
	width:15px;
926
	height:15px;
927
	margin-top:2px;
928
}
929
.dj_ie6 .tundra .dijitAccordionPane .dijitAccordionArrow {
930
	background-image: url("images/arrowUp.gif");
931
}
932
 
933
.tundra .dijitAccordionPane-selected .dijitAccordionArrow {
934
	background:url("images/circleIcon.png") no-repeat;
935
	margin-top:2px;
936
}
937
.dj_ie6 .tundra .dijitAccordionPane-selected .dijitAccordionArrow {
938
	background-image: url("images/circleIcon.gif");
939
}
940
 
941
.tundra .dijitAccordionPane .dijitAccordionBody {
942
	background: #fff;
943
	border-top: 1px solid #bfbfbf;
944
}
945
 
946
/* Tree */
947
 
948
.tundra .dijitTreeNode {
949
    background-image : url('images/i.gif');
950
    background-position : top left;
951
    background-repeat : repeat-y;
952
    margin-left: 19px;
953
    zoom: 1;	/* MOW: what the heck is this doing in here? */
954
}
955
 
956
/* left vertical line (grid) for all nodes */
957
.tundra .dijitTreeIsLast {
958
    background: url('images/i_half.gif') no-repeat;
959
}
960
 
961
.tundra .dijitTreeIsRoot {
962
    margin-left: 0;
963
    background-image: none;
964
}
965
 
966
.tundra .dijitTreeExpando {
967
    width: 18px;
968
    height: 18px;
969
}
970
 
971
.tundra .dijitTreeContent {
972
    min-height: 18px;
973
    min-width: 18px;
974
    margin-left:18px;
975
    padding-top:3px;
976
    padding-left:1px;
977
}
978
 
979
 
980
.tundra .dijitTreeExpand {
981
    width: 18px;
982
    height: 18px;
983
    background-repeat : no-repeat;
984
}
985
 
986
/* same style as IE selection */
987
.tundra .dijitTreeNodeEmphasized {
988
    background-color: Highlight;
989
    color: HighlightText;
990
}
991
 
992
/* don't use :focus due to opera and IE's lack of support on div's */
993
.tundra .dijitTreeLabelFocused {
994
	outline: 1px invert dotted;
995
}
996
 
997
.tundra .dijitTreeExpandoOpened {
998
	background-image: url('images/treeExpand_minus.gif');
999
}
1000
 
1001
.tundra .dijitTreeExpandoClosed {
1002
	background-image: url('images/treeExpand_plus.gif');
1003
}
1004
 
1005
.tundra .dijitTreeExpandoLeaf {
1006
	background-image: url('images/treeExpand_leaf.gif');
1007
}
1008
 
1009
.tundra .dijitTreeExpandoLoading {
1010
	background-image: url('images/treeExpand_loading.gif');
1011
}
1012
 
1013
 
1014
/* Calendar*/
1015
 
1016
.tundra .dijitCalendarIncrementControl {
1017
	/* next/prev month buttons */
1018
	width:16px;
1019
	height:16px;
1020
}
1021
.dj_ie6 .tundra .dijitCalendarIncrementControl {
1022
	padding:.1em;
1023
}
1024
 
1025
.tundra .dijitCalendarIncreaseInner,
1026
.tundra .dijitCalendarDecreaseInner {
1027
	visibility:hidden;
1028
}
1029
 
1030
.tundra .dijitCalendarDecrease {
1031
	background:url("images/arrowLeft.png") no-repeat center center;
1032
}
1033
.dj_ie6 .tundra .dijitCalendarDecrease {
1034
	background-image:url("images/arrowLeft.gif");
1035
}
1036
 
1037
.tundra .dijitCalendarIncrease {
1038
	background:url(images/arrowRight.png) no-repeat center center;
1039
}
1040
.dj_ie6 .tundra .dijitCalendarIncrease {
1041
	background-image:url("images/arrowRight.gif");
1042
}
1043
 
1044
.tundra table.dijitCalendarContainer {
1045
	font-size: 100%;
1046
	border-collapse: collapse;
1047
	border-spacing: 0;
1048
	border: 1px solid #ccc;
1049
	margin: 0;
1050
}
1051
 
1052
.tundra .dijitCalendarMonthContainer th {
1053
	/* month header cell */
1054
	background:white url("images/calendarMonthLabel.png") repeat-x top;
1055
	padding-top:.3em;
1056
	padding-bottom:.1em;
1057
	text-align:center;
1058
}
1059
.dj_ie6 .tundra .dijitCalendarMonthContainer th {
1060
	padding-top:.1em;
1061
	padding-bottom:0em;
1062
}
1063
 
1064
.tundra .dijitCalendarDayLabelTemplate {
1065
	/* day of week labels */
1066
	background:white url("images/calendarDayLabel.png") repeat-x bottom;
1067
	font-weight:normal;
1068
	padding-top:.15em;
1069
	padding-bottom:0em;
1070
	border-top: 1px solid #eeeeee;
1071
	color:#293a4b;
1072
	text-align:center;
1073
}
1074
 
1075
.tundra .dijitCalendarMonthLabel {
1076
	/* day of week labels */
1077
	color:#293a4b;
1078
	font-size: 0.75em;
1079
	font-weight: bold;
1080
	text-align:center;
1081
}
1082
 
1083
.dj_ie7 .tundra .dijitCalendarDateTemplate,
1084
.dj_ie6 .tundra .dijitCalendarDateTemplate {
1085
	font-size: 0.8em;
1086
}
1087
 
1088
.tundra .dijitCalendarDateTemplate {
1089
	/* style for each day cell */
1090
	font-size: 0.9em;
1091
	font-weight: bold;
1092
	text-align: center;
1093
	padding: 0.3em 0.3em 0.05em 0.3em;
1094
	letter-spacing: 1px;
1095
}
1096
 
1097
 
1098
.tundra .dijitCalendarPreviousMonth,
1099
.tundra .dijitCalendarNextMonth 		{
1100
	/* days that are part of the previous or next month */
1101
	color:#999999;
1102
	background-color:#f8f8f8 !important;
1103
}
1104
 
1105
.tundra .dijitCalendarPreviousMonthDisabled,
1106
.tundra .dijitCalendarNextMonthDisabled	{
1107
	/* days that are part of the previous or next month - disabled*/
1108
	background-color:#a4a5a6 !important;
1109
}
1110
 
1111
.tundra .dijitCalendarCurrentMonth {
1112
	/* days that are part of this month */
1113
	background-color:white !important;
1114
}
1115
 
1116
.tundra .dijitCalendarCurrentMonthDisabled {
1117
	/* days that are part of this month - disabled */
1118
	background-color:#bbbbbc !important;
1119
}
1120
 
1121
.tundra .dijitCalendarDisabledDate {
1122
	/* one or the other? */
1123
	/* background: url(images/noX.gif) no-repeat center center !important; */
1124
	text-decoration:line-through !important;
1125
	cursor:default !important;
1126
}
1127
 
1128
.tundra .dijitCalendarCurrentDate {
1129
	/* cell for today's date */
1130
	text-decoration:underline;
1131
	font-weight:bold;
1132
}
1133
 
1134
.tundra .dijitCalendarSelectedDate {
1135
	/* cell for the selected date */
1136
	background-color:#bbc4d0 !important;
1137
	color:black !important;
1138
}
1139
 
1140
 
1141
.tundra .dijitCalendarYearContainer {
1142
	/* footer of the table that contains the year display/selector */
1143
	background:white url("images/calendarYearLabel.png") repeat-x bottom;
1144
	border-top:1px solid #ccc;
1145
}
1146
 
1147
.tundra .dijitCalendarYearLabel {
1148
	/* container for all of 3 year labels */
1149
	margin:0;
1150
	padding:0.4em 0 0.25em 0;
1151
	text-align:center;
1152
}
1153
 
1154
.tundra .dijitCalendarSelectedYear {
1155
	/* label for selected year */
1156
	color:black;
1157
	padding:0.2em;
1158
	padding-bottom:0.1em;
1159
	background-color:#bbc4d0 !important;
1160
}
1161
 
1162
.tundra .dijitCalendarNextYear,
1163
.tundra .dijitCalendarPreviousYear {
1164
	/* label for next/prev years */
1165
	color:black !important;
1166
	font-weight:normal;
1167
}
1168
 
1169
 
1170
 
1171
/* inline edit boxen */
1172
.tundra .dijitInlineValue {
1173
	/* span around an inline-editable value when NOT in edit mode */
1174
	padding:3px;
1175
	margin:4px;
1176
}
1177
 
1178
 
1179
/* MOW: trying to get this to look like a mini-dialog.  Advised? */
1180
.tundra .dijitInlineEditor {
1181
	/* fieldset surrounding an inlineEditor in edit mode */
1182
	display: inline-block;
1183
	display: -moz-inline-stack;
1184
	#display:inline;
1185
	/*
1186
	border: solid;
1187
	border-color: #7788a0 #344257 #344257 #7788a0;
1188
	border-width:1px 2px 2px 1px;
1189
	-moz-border-radius:0px 2px 0px 2px;	make BL and TR corners indent on Moz so it looks like we have a shadow
1190
	background-color:white;
1191
	*/
1192
}
1193
 
1194
.dijitInlineEditor .saveButton,
1195
.dijitInlineEditor .cancelButton {
1196
	margin:3px 3px 3px 0px;
1197
}
1198
 
1199
 
1200
/* spinner */
1201
 
1202
.tundra .dijitSpinner {}
1203
.tundra .dijitSpinner input {
1204
}
1205
 
1206
 
1207
 
1208
 
1209
/****
1210
		dijit.ProgressBar
1211
 ****/
1212
 
1213
.tundra .dijitProgressBar {
1214
	margin:2px 0px 2px 0px;
1215
}
1216
 
1217
.tundra .dijitProgressBarEmpty{
1218
	/* outer container and background of the bar that's not finished yet*/
1219
	background:#ececec url("images/progressBarEmpty.png") repeat-x bottom left;
1220
	border-color: #84a3d1;
1221
}
1222
 
1223
.tundra .dijitProgressBarTile{
1224
	/* inner container for finished portion when in 'tile' (image) mode */
1225
	background:#cad2de url("images/progressBarFull.png") repeat-x top left;
1226
}
1227
 
1228
.tundra .dijitProgressBarLabel {
1229
	/* Set to a color that contrasts with both the "Empty" and "Full" parts. */
1230
	color:#293a4b;
1231
}
1232
 
1233
.tundra .dijitProgressBarIndeterminate .dijitProgressBarTile {
1234
	/* use an animated gif for the progress bar in 'indeterminate' mode */
1235
	background:#cad2de url("images/dijitProgressBarAnim.gif") repeat-x top left;
1236
}
1237
 
1238
/****
1239
 	SLIDER
1240
****/
1241
 
1242
.tundra .dijitHorizontalSliderProgressBar {
1243
	border-color: #aab0bb;
1244
	background: #c0c2c5 url("images/sliderFull.png") repeat-x top left;
1245
}
1246
 
1247
.tundra .dijitVerticalSliderProgressBar {
1248
	border-color: #aab0bb;
1249
	background: #c0c2c5 url("images/sliderFullVertical.png") repeat-y bottom left;
1250
}
1251
 
1252
.tundra .dijitSliderFocused .dijitHorizontalSliderProgressBar,
1253
.tundra .dijitSliderFocused .dijitHorizontalSliderLeftBumper {
1254
	background-image:url("images/sliderFullFocus.png");
1255
}
1256
 
1257
.tundra .dijitSliderFocused .dijitVerticalSliderProgressBar,
1258
.tundra .dijitSliderFocused .dijitVerticalSliderBottomBumper {
1259
	background-image:url("images/sliderFullVerticalFocus.png");
1260
}
1261
 
1262
.tundra .dijitVerticalSliderRemainingBar {
1263
	border-color: #b4b4b4;
1264
	background: #dcdcdc url("images/sliderEmptyVertical.png") repeat-y bottom left;
1265
}
1266
 
1267
.tundra .dijitHorizontalSliderRemainingBar {
1268
	border-color: #b4b4b4;
1269
	background: #dcdcdc url("images/sliderEmpty.png") repeat-x top left;
1270
}
1271
 
1272
.tundra .dijitSliderBar {
1273
	border-style: solid;
1274
	outline:1px;
1275
	/* border-color: #b4b4b4; */
1276
}
1277
.tundra .dijitSliderFocused .dijitSliderBar {
1278
	border-color:#333;
1279
}
1280
 
1281
.dijit_a11y .dijitSliderProgressBar {
1282
	background-color:#333 !important;
1283
}
1284
 
1285
.tundra .dijitHorizontalSliderImageHandle {
1286
	border:0px;
1287
	width:16px;
1288
	height:16px;
1289
	background:url("images/preciseSliderThumb.png") no-repeat center top;
1290
	cursor:pointer;
1291
}
1292
.tundra .dijitSliderFocused .dijitHorizontalSliderImageHandle {
1293
	background-image:url("images/preciseSliderThumbFocus.png");
1294
	#background-image:url("images/preciseSliderThumbFocus.gif");
1295
}
1296
 
1297
.dj_ie6 .tundra .dijitHorizontalSliderImageHandle {
1298
	background-image:url("images/preciseSliderThumb.gif");
1299
}
1300
 
1301
.tundra .dijitHorizontalSliderLeftBumper {
1302
	border-left-width: 1px;
1303
	border-color: #aab0bb;
1304
	background: #c0c2c5 url("images/sliderFull.png") repeat-x top left;
1305
}
1306
 
1307
.tundra .dijitHorizontalSliderRightBumper {
1308
	background: #dcdcdc url("images/sliderEmpty.png") repeat-x top left;
1309
	border-color: #b4b4b4;
1310
	border-right-width: 1px;
1311
}
1312
 
1313
.tundra .dijitVerticalSliderImageHandle {
1314
	border:0px;
1315
	width:16px;
1316
	height:16px;
1317
	background:url("images/sliderThumb.png") no-repeat center center;
1318
	cursor:pointer;
1319
}
1320
 
1321
.tundra .dijitSliderFocused .dijitVerticalSliderImageHandle {
1322
	background-image:url("images/sliderThumbFocus.png");
1323
}
1324
.dj_ie6 .tundra .dijitSliderFocused .dijitVerticalSliderImageHandle {
1325
	background-image:url("images/sliderThumbFocus.gif");
1326
}
1327
 
1328
.tundra .dijitVerticalSliderBottomBumper {
1329
	border-bottom-width: 1px;
1330
	border-color: #aab0bb;
1331
	background: #c0c2c5 url("images/sliderFullVertical.png") repeat-y bottom left;
1332
}
1333
 
1334
.tundra .dijitVerticalSliderTopBumper {
1335
	background: #dcdcdc url("images/sliderEmptyVertical.png") repeat-y top left;
1336
	border-color: #b4b4b4;
1337
	border-top-width: 1px;
1338
}
1339
 
1340
.tundra .dijitHorizontalSliderIncrementIcon,
1341
.tundra .dijitVerticalSliderIncrementIcon {
1342
	background:url('images/arrowUp.png') no-repeat center center;
1343
	width:16px; height:16px;
1344
	cursor:pointer;
1345
}
1346
.tundra .dijitHorizontalSliderIncrementIcon {
1347
	background-image:url('images/arrowRight.png');
1348
}
1349
 
1350
.tundra .dijitHorizontalSliderDecrementIcon,
1351
.tundra .dijitVerticalSliderDecrementIcon {
1352
	width:16px;
1353
	height:16px;
1354
	cursor:pointer;
1355
	background:url('images/arrowDown.png') no-repeat center center;
1356
}
1357
.tundra .dijitHorizontalSliderDecrementIcon { background-image:url('images/arrowLeft.png'); }
1358
 
1359
.tundra .dijitSliderButtonInner {
1360
	visibility:hidden;
1361
}
1362
 
1363
.tundra .dijitSliderDisabled {
1364
	opacity:0.6 !important;
1365
}
1366
 
1367
.dj_ie6 .tundra .dijitSliderDisabled,
1368
.dj_ie6 .tundra .dijitSliderDisabled .RuleContainer,
1369
.dj_ie6 .tundra .dijitSliderDisabled .dijitSliderRemainingBar,
1370
.dj_ie6 .tundra .dijitSliderDisabled .dijitSliderProgressBar {
1371
	filter: gray() alpha(opacity=40);
1372
}
1373
 
1374
/**** ICONS *****/
1375
 
1376
.tundra .dijitEditorIcon {
1377
	background-image: url('images/editor.gif'); /* editor icons sprite image */
1378
	background-repeat: no-repeat;
1379
	width: 18px;
1380
	height: 18px;
1381
	text-align: center;
1382
}
1383
.tundra .dijitEditorIconSep { background-position: 0px; }
1384
.tundra .dijitEditorIconBackColor { background-position: -18px; }
1385
.tundra .dijitEditorIconBold { background-position: -36px; }
1386
.tundra .dijitEditorIconCancel { background-position: -54px; }
1387
.tundra .dijitEditorIconCopy { background-position: -72px; }
1388
.tundra .dijitEditorIconCreateLink { background-position: -90px; }
1389
.tundra .dijitEditorIconCut { background-position: -108px; }
1390
.tundra .dijitEditorIconDelete { background-position: -126px; }
1391
.tundra .dijitEditorIconForeColor { background-position: -144px; }
1392
.tundra .dijitEditorIconHiliteColor { background-position: -162px; }
1393
.tundra .dijitEditorIconIndent { background-position: -180px; }
1394
.tundra .dijitEditorIconInsertHorizontalRule { background-position: -198px; }
1395
.tundra .dijitEditorIconInsertImage { background-position: -216px; }
1396
.tundra .dijitEditorIconInsertOrderedList { background-position: -234px; }
1397
.tundra .dijitEditorIconInsertTable { background-position: -252px; }
1398
.tundra .dijitEditorIconInsertUnorderedList { background-position: -270px; }
1399
.tundra .dijitEditorIconItalic { background-position: -288px; }
1400
.tundra .dijitEditorIconJustifyCenter { background-position: -306px; }
1401
.tundra .dijitEditorIconJustifyFull { background-position: -324px; }
1402
.tundra .dijitEditorIconJustifyLeft { background-position: -342px; }
1403
.tundra .dijitEditorIconJustifyRight { background-position: -360px; }
1404
.tundra .dijitEditorIconLeftToRight { background-position: -378px; }
1405
.tundra .dijitEditorIconListBulletIndent { background-position: -396px; }
1406
.tundra .dijitEditorIconListBulletOutdent { background-position: -414px; }
1407
.tundra .dijitEditorIconListNumIndent { background-position: -432px; }
1408
.tundra .dijitEditorIconListNumOutdent { background-position: -450px; }
1409
.tundra .dijitEditorIconOutdent { background-position: -468px; }
1410
.tundra .dijitEditorIconPaste { background-position: -486px; }
1411
.tundra .dijitEditorIconRedo { background-position: -504px; }
1412
.tundra .dijitEditorIconRemoveFormat { background-position: -522px; }
1413
.tundra .dijitEditorIconRightToLeft { background-position: -540px; }
1414
.tundra .dijitEditorIconSave { background-position: -558px; }
1415
.tundra .dijitEditorIconSpace { background-position: -576px; }
1416
.tundra .dijitEditorIconStrikethrough { background-position: -594px; }
1417
.tundra .dijitEditorIconSubscript { background-position: -612px; }
1418
.tundra .dijitEditorIconSuperscript { background-position: -630px; }
1419
.tundra .dijitEditorIconUnderline { background-position: -648px; }
1420
.tundra .dijitEditorIconUndo { background-position: -666px; }
1421
.tundra .dijitEditorIconWikiword { background-position: -684px; }
1422
 
1423
/*
1424
 * IE6: can't display PNG images with gradient transparency.
1425
 * Want to use filter property for those images, but then need to specify a path relative
1426
 * to the main page, rather than relative to this file... using gifs for now
1427
 */
1428
 
1429
.dj_ie6 .tundra .dijitInputField
1430
{
1431
	background: url("images/validationInputBg.gif") repeat-x top left #fff;
1432
}
1433
 
1434
/**** Disabled cursor *****/
1435
.tundra .dijitSliderDisabled *,
1436
.tundra .dijitDisabledClickableRegion,	/* a region the user would be able to click on, but it's disabled */
1437
.tundra .dijitSpinnerDisabled *,
1438
.tundra .dijitButtonDisabled *,
1439
.tundra .dijitDropDownButtonDisabled *,
1440
.tundra .dijitComboButtonDisabled *,
1441
.tundra .dijitComboBoxDisabled *
1442
{
1443
	cursor: not-allowed !important;
1444
}
1445
 
1446
/* DnD avatar-specific settings */
1447
/* For now it uses a default set of rules. Some other DnD classes can be modified as well. */
1448
.tundra .dojoDndAvatar			{font-size: 75%; color: black;}
1449
.tundra .dojoDndAvatarHeader td	{padding-left: 20px; padding-right: 4px;}
1450
.tundra .dojoDndAvatarHeader	{background: #ccc;}
1451
.tundra .dojoDndAvatarItem		{background: #eee;}
1452
.tundra.dojoDndMove .dojoDndAvatarHeader	{background-image: url(images/dndNoMove.png); background-repeat: no-repeat;}
1453
.tundra.dojoDndCopy .dojoDndAvatarHeader	{background-image: url(images/dndNoCopy.png); background-repeat: no-repeat;}
1454
.tundra.dojoDndMove .dojoDndAvatarCanDrop .dojoDndAvatarHeader	{background-image: url(images/dndMove.png); background-repeat: no-repeat;}
1455
.tundra.dojoDndCopy .dojoDndAvatarCanDrop .dojoDndAvatarHeader	{background-image: url(images/dndCopy.png); background-repeat: no-repeat;}
1456
 
1457
.tundra .dijitContentPaneLoading {
1458
	background:url('images/loading.gif') no-repeat left center;
1459
	padding-left:25px;
1460
}
1461
 
1462
.tundra .dijitContentPaneError {
1463
	background:url('images/warning.png') no-repeat left center;
1464
	padding-left:25px;
1465
}