diff options
Diffstat (limited to 'js/panels/Timeline/EasingMenu.reel/css')
-rw-r--r-- | js/panels/Timeline/EasingMenu.reel/css/EasingMenu.css | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/js/panels/Timeline/EasingMenu.reel/css/EasingMenu.css b/js/panels/Timeline/EasingMenu.reel/css/EasingMenu.css new file mode 100644 index 00000000..ec300304 --- /dev/null +++ b/js/panels/Timeline/EasingMenu.reel/css/EasingMenu.css | |||
@@ -0,0 +1,86 @@ | |||
1 | @charset "UTF-8"; | ||
2 | /* <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> */ | ||
7 | /* Layer.scss | ||
8 | * Main SCSS file for EasingMenu component, compiled by SASS into the file css/EasingMenu.css. | ||
9 | */ | ||
10 | /* | ||
11 | * Easing picker | ||
12 | */ | ||
13 | /* line 26, ../scss/EasingMenu.scss */ | ||
14 | .container-easing-choice { | ||
15 | position: absolute; | ||
16 | top: 2px; | ||
17 | right: 8px; | ||
18 | font-size: 10px; | ||
19 | line-height: 8px; | ||
20 | border: 1px solid black; | ||
21 | color: white; | ||
22 | background-color: #474747; | ||
23 | } | ||
24 | |||
25 | /* line 38, ../scss/EasingMenu.scss */ | ||
26 | .container-easing, | ||
27 | .container-easing-choice .easing-choice, | ||
28 | .container-easing-choices .easing-choices { | ||
29 | font-size: 10px; | ||
30 | width: 70px; | ||
31 | white-space: nowrap; | ||
32 | } | ||
33 | |||
34 | /* line 44, ../scss/EasingMenu.scss */ | ||
35 | .container-easing, | ||
36 | .container-easing-choice .easing-choice { | ||
37 | height: 10px; | ||
38 | } | ||
39 | |||
40 | /* line 47, ../scss/EasingMenu.scss */ | ||
41 | .container-easing-easing-choice .easing-choice { | ||
42 | position: absolute; | ||
43 | top: 0px; | ||
44 | left: 3px; | ||
45 | width: 67px; | ||
46 | cursor: pointer; | ||
47 | } | ||
48 | |||
49 | /* line 54, ../scss/EasingMenu.scss */ | ||
50 | .container-easing-choices .easing-choices { | ||
51 | position: absolute; | ||
52 | bottom: -1px; | ||
53 | left: -1px; | ||
54 | z-index: 100; | ||
55 | height: auto; | ||
56 | border: 1px solid black; | ||
57 | color: white; | ||
58 | background-color: #474747; | ||
59 | overflow: hidden; | ||
60 | list-style-type: none; | ||
61 | margin: 0px; | ||
62 | padding: 0px; | ||
63 | } | ||
64 | |||
65 | /* line 68, ../scss/EasingMenu.scss */ | ||
66 | .container-easing-choices .easing-choices li { | ||
67 | list-style-type: none; | ||
68 | margin: 0px; | ||
69 | padding: 0px; | ||
70 | padding-top: 2px; | ||
71 | padding-bottom: 2px; | ||
72 | padding-left: 3px; | ||
73 | cursor: pointer; | ||
74 | } | ||
75 | |||
76 | /* line 79, ../scss/EasingMenu.scss */ | ||
77 | .container-easing-choices .easing-choices li:hover, | ||
78 | .container-easing-choices .easing-choices li.easing-selected { | ||
79 | color: #242424; | ||
80 | background-color: #b2b2b2; | ||
81 | } | ||
82 | |||
83 | /* line 83, ../scss/EasingMenu.scss */ | ||
84 | .container-easing-choices .easing-choices li.easing-selected { | ||
85 | cursor: default; | ||
86 | } | ||