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