diff options
author | Pierre Frisch | 2011-12-22 07:25:50 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-27 11:18:17 -0800 |
commit | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch) | |
tree | 0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/components/slider.reel/slider.css | |
parent | 2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff) | |
download | ninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz |
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/components/slider.reel/slider.css')
-rw-r--r-- | js/components/slider.reel/slider.css | 66 |
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 | ||