Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
/* Base CSS Class for the slider */
2
.Slider
3
{
4
	position: relative;
5
	margin: 10px;
6
	padding: 0;
7
	background-color: Gainsboro;
8
	border: 1px outset;
9
}
10
 
11
/* Class for horizontal slider */
12
.HorizontalSlider
13
{
14
	width: 210px;
15
	height: 14px;
16
	text-align: left;
17
}
18
 
19
/* Class for vertical slider */
20
.VerticalSlider
21
{
22
	height: 210px;
23
	width: 14px;
24
}
25
 
26
/* Class for Track */
27
.Track
28
{
29
	border-style: inset;
30
	outline-color: invert;
31
	outline-style: none;
32
	outline-width: 1px;
33
	border-width: 1px;
34
	position: absolute;
35
	background-color: lightBlue;
36
}
37
 
38
/* Horizontal Track */
39
.HorizontalSlider .Track
40
{
41
 
42
	height: 3px;
43
	top: 5px;
44
	width: 97%;
45
	left: 1%;
46
}
47
 
48
/* Vertical Track */
49
.VerticalSlider .Track
50
{
51
	height: 97%;
52
	width: 3px;
53
	left: 5px;
54
	top: 1%;
55
}
56
 
57
/* Class for the progress indicator */
58
.Progress
59
{
60
	background-color: red;
61
}
62
 
63
/* Horizontal one, take 100% of track (parent) height*/
64
.HorizontalSlider .Progress
65
{
66
	height: 100%;
67
}
68
 
69
/* Vertical progress indicator, take 100% of track width*/
70
.VerticalSlider .Progress
71
{
72
	width: 100%
73
}
74
 
75
/* Class for handle */
76
.Handle {
77
	border: 0px none;
78
	position: relative;
79
	cursor: move;
80
}
81
 
82
/* Horizontal slider handle */
83
.HorizontalSlider .Handle
84
{
85
	width: 31px;
86
	height: 14px;
87
	background: transparent url("TSliderHandleHorizontal.png") no-repeat scroll center;
88
}
89
 
90
/* Vertical slider handle */
91
.VerticalSlider .Handle
92
{
93
	width: 14px;
94
	height: 31px;
95
	background: transparent url("TSliderHandleVertical.png") no-repeat scroll center;
96
}