Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
449 rajveer 1
/*
2
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
3
 *
4
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
5
 * may not operate correctly without them.
6
 */
7
 
8
.jspContainer
9
{
10
	overflow: hidden;
11
	position: relative;
12
}
13
 
14
.jspPane
15
{
16
	position: absolute;
17
}
18
 
19
.jspVerticalBar
20
{
21
	position: absolute;
22
	top: 0;
23
	right: 0;
24
	width: 16px;
25
	height: 100%;
26
	background: red;
27
}
28
 
29
.jspHorizontalBar
30
{
31
	position: absolute;
32
	bottom: 0;
33
	left: 0;
34
	width: 100%;
35
	height: 16px;
36
	background: red;
37
}
38
 
39
.jspVerticalBar *,
40
.jspHorizontalBar *
41
{
42
	margin: 0;
43
	padding: 0;
44
}
45
 
46
.jspCap
47
{
48
	display: none;
49
}
50
 
51
.jspHorizontalBar .jspCap
52
{
53
	float: left;
54
}
55
 
56
.jspTrack
57
{
58
	background: #dde;
59
	position: relative;
60
}
61
 
62
 
63
.jspHorizontalBar .jspTrack,
64
.jspHorizontalBar .jspDrag
65
{
66
	float: left;
67
	height: 100%;
68
}
69
 
70
.jspArrow
71
{
72
	background: #50506d;
73
	text-indent: -20000px;
74
	display: block;
75
	cursor: pointer;
76
}
77
 
78
.jspArrow.jspDisabled
79
{
80
	cursor: default;
81
	background: #80808d;
82
}
83
 
84
.jspVerticalBar .jspArrow
85
{
86
	height: 16px;
87
}
88
 
89
.jspHorizontalBar .jspArrow
90
{
91
	width: 16px;
92
	float: left;
93
	height: 100%;
94
}
95
 
96
.jspVerticalBar .jspArrow:focus
97
{
98
	outline: none;
99
}
100
 
101
.jspCorner
102
{
103
	background: #eeeef4;
104
	float: left;
105
	height: 100%;
106
}
107
 
108
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
109
* html .jspCorner
110
{
111
	margin: 0 -3px 0 0;
112
}