aboutsummaryrefslogtreecommitdiff
path: root/js/components/slider.reel/slider.css
diff options
context:
space:
mode:
Diffstat (limited to 'js/components/slider.reel/slider.css')
-rw-r--r--js/components/slider.reel/slider.css66
1 files changed, 66 insertions, 0 deletions
diff --git a/js/components/slider.reel/slider.css b/js/components/slider.reel/slider.css
new file mode 100644
index 00000000..59338d31
--- /dev/null
+++ b/js/components/slider.reel/slider.css
@@ -0,0 +1,66 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7.slider-parent {
8 position:relative;
9}
10
11.slider-parent.horizontal {
12 width: 100%;
13 height: 12px;
14}
15
16.slider-parent.vertical {
17 height: 100%;
18 width: 12px;
19}
20
21.slider-track {
22 position:absolute;
23 background-color: #999999;
24 width: 100%;
25 height: 100%;
26}
27
28.slider-track:hover
29{
30 cursor:pointer;
31}
32
33.slider-track.horizontal {
34 height: 100%;
35 width:100%;
36}
37
38.slider-track.vertical {
39 width: 100%;
40 height:100%;
41}
42
43.knob {
44 position: absolute;
45 width: 12px;
46 height: 12px;
47 background-image: url(knob.png);
48 background-repeat: no-repeat;
49 background-position: center center;
50 float:left;
51}
52
53.knob:hover
54{
55 cursor:pointer;
56}
57
58.knob.horizontal {
59 margin-left: -6px;
60 margin-right: -6px;
61}
62
63.knob.vertical {
64 margin-top: -6px;
65 margin-bottom: -6px;
66} \ No newline at end of file