diff options
Diffstat (limited to 'js/panels/Timeline/Span.reel/css')
-rw-r--r-- | js/panels/Timeline/Span.reel/css/Span.css | 107 |
1 files changed, 98 insertions, 9 deletions
diff --git a/js/panels/Timeline/Span.reel/css/Span.css b/js/panels/Timeline/Span.reel/css/Span.css index 198d71f3..e5cb4263 100644 --- a/js/panels/Timeline/Span.reel/css/Span.css +++ b/js/panels/Timeline/Span.reel/css/Span.css | |||
@@ -1,17 +1,106 @@ | |||
1 | @charset "UTF-8"; | ||
1 | /* <copyright> | 2 | /* <copyright> |
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | 3 | 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 | 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 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. |
5 | </copyright> */ | 6 | </copyright> */ |
7 | /* Span.scss | ||
8 | * Main SCSS file for Span component, compiled by SASS into the file css/Span.css. | ||
9 | */ | ||
10 | /* line 22, ../scss/Span.scss */ | ||
11 | .tween_span { | ||
12 | position: absolute; | ||
13 | height: 16px; | ||
14 | } | ||
15 | |||
16 | /* line 26, ../scss/Span.scss */ | ||
17 | .tween_span .tween_span_bar { | ||
18 | width: 100%; | ||
19 | height: 100%; | ||
20 | background-color: #fff; | ||
21 | opacity: 0.15; | ||
22 | } | ||
23 | |||
24 | /* line 33, ../scss/Span.scss */ | ||
25 | .tween_span.spanHighlight .tween_span_bar { | ||
26 | background-color: #a0c8ff; | ||
27 | opacity: 0.4; | ||
28 | } | ||
29 | |||
30 | /* | ||
31 | * Easing picker | ||
32 | */ | ||
33 | /* line 42, ../scss/Span.scss */ | ||
34 | .container-easing { | ||
35 | position: absolute; | ||
36 | top: 2px; | ||
37 | right: 8px; | ||
38 | font-size: 10px; | ||
39 | line-height: 8px; | ||
40 | border: 1px solid black; | ||
41 | color: white; | ||
42 | background-color: #474747; | ||
43 | } | ||
44 | |||
45 | /* line 54, ../scss/Span.scss */ | ||
46 | .container-easing, | ||
47 | .container-easing .easing-choice, | ||
48 | .container-easing .easing-choices { | ||
49 | width: 70px; | ||
50 | white-space: nowrap; | ||
51 | } | ||
6 | 52 | ||
7 | .tween_span{ | 53 | /* line 59, ../scss/Span.scss */ |
8 | position: absolute; | 54 | .container-easing, |
9 | height: 16px; | 55 | .container-easing .easing-choice { |
10 | opacity: 0.15; | 56 | height: 10px; |
11 | background-color: white; | ||
12 | } | 57 | } |
13 | 58 | ||
14 | .tween_span.spanHighlight{ | 59 | /* line 62, ../scss/Span.scss */ |
15 | background-color: #a0c8ff; | 60 | .container-easing .easing-choice { |
16 | opacity: 0.4; | 61 | position: absolute; |
17 | } \ No newline at end of file | 62 | top: 0px; |
63 | left: 3px; | ||
64 | width: 67px; | ||
65 | cursor: pointer; | ||
66 | } | ||
67 | |||
68 | /* line 69, ../scss/Span.scss */ | ||
69 | .container-easing .easing-choices { | ||
70 | position: absolute; | ||
71 | display: none; | ||
72 | bottom: -1px; | ||
73 | left: -1px; | ||
74 | z-index: 100; | ||
75 | height: auto; | ||
76 | border: 1px solid black; | ||
77 | color: white; | ||
78 | background-color: #474747; | ||
79 | overflow: hidden; | ||
80 | list-style-type: none; | ||
81 | margin: 0px; | ||
82 | padding: 0px; | ||
83 | } | ||
84 | |||
85 | /* line 84, ../scss/Span.scss */ | ||
86 | .container-easing .easing-choices li { | ||
87 | list-style-type: none; | ||
88 | margin: 0px; | ||
89 | padding: 0px; | ||
90 | padding-top: 2px; | ||
91 | padding-bottom: 2px; | ||
92 | padding-left: 3px; | ||
93 | cursor: pointer; | ||
94 | } | ||
95 | |||
96 | /* line 95, ../scss/Span.scss */ | ||
97 | .container-easing .easing-choices li:hover, | ||
98 | .container-easing .easing-choices li.easing-selected { | ||
99 | color: #242424; | ||
100 | background-color: #b2b2b2; | ||
101 | } | ||
102 | |||
103 | /* line 99, ../scss/Span.scss */ | ||
104 | .container-easing .easing-choices li.easing-selected { | ||
105 | cursor: default; | ||
106 | } | ||