summaryrefslogtreecommitdiffstats
path: root/WebContent/ITMILL/themes/base/slider/slider.css
blob: a075d4bc449077f82a5b2ad6ab4d774da20b15bf (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
.i-slider {
	margin: 5px 0;
}
.i-slider-base {
	/* changing the borders will require adjustments to ISlider.java */
	height: 2px;
	border-top: 1px solid #ddd;
	background: #eee;
	border-left: 1px solid #ddd;
	border-right: 1px solid #eee;
	
}
.i-slider-handle {
	background: #aaa;
	width: 12px;
	height: 12px;
	margin-top: -5px;
	font-size: 0;
	cursor: pointer;
}

.i-slider-vertical {
	width: 2px;
	height: auto;
	margin: 0 5px;
	border: none;
	border-left: 1px solid #cccfd0;
	border-right: 1px solid #cccfd0;
}
.i-slider-vertical .i-slider-base {
	width: 2px;
	border-bottom: 1px solid #eee;
	border-right: none;
}
.i-slider-vertical .i-slider-handle {
	width: 12px;
	height: 12px;
	font-size: 0;
	cursor: pointer;
	margin-left: -5px;
}

/* Disabled by default
.i-slider-error .i-slider-base {
	background: #FFE0E0;
}
*/
/* Disabled by default
.i-slider-required .i-slider-base {
	background: #FFE0E0;
}
*/

/* IE specific styles */
.i-ie6 .i-slider,
.i-ie6 .i-slider-vertical {
	margin: 0;
}
.i-ie6 .i-slider .i-slider-handle {
	margin: -1px 0;
}
.i-ie6 .i-slider-vertical .i-slider-handle {
	margin: 0 -1px;
}