diff options
author | Jon Reid | 2012-05-23 15:44:41 -0700 |
---|---|---|
committer | Jon Reid | 2012-05-23 15:44:41 -0700 |
commit | a8dff9f5cb9dec84e6805118d49903710b361275 (patch) | |
tree | ee72f7455aa8fafd6f4a21a1bc899db6a905f27a /js/panels/Timeline/Span.reel/css/Span.css | |
parent | bae00e5a647b5b6a677857a1bb531273a89e781b (diff) | |
download | ninja-a8dff9f5cb9dec84e6805118d49903710b361275.tar.gz |
Timeline: Easing selection per keyframe.
Diffstat (limited to 'js/panels/Timeline/Span.reel/css/Span.css')
-rw-r--r-- | js/panels/Timeline/Span.reel/css/Span.css | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/js/panels/Timeline/Span.reel/css/Span.css b/js/panels/Timeline/Span.reel/css/Span.css index 16f931b2..e5cb4263 100644 --- a/js/panels/Timeline/Span.reel/css/Span.css +++ b/js/panels/Timeline/Span.reel/css/Span.css | |||
@@ -34,7 +34,7 @@ | |||
34 | .container-easing { | 34 | .container-easing { |
35 | position: absolute; | 35 | position: absolute; |
36 | top: 2px; | 36 | top: 2px; |
37 | right: 6px; | 37 | right: 8px; |
38 | font-size: 10px; | 38 | font-size: 10px; |
39 | line-height: 8px; | 39 | line-height: 8px; |
40 | border: 1px solid black; | 40 | border: 1px solid black; |
@@ -47,15 +47,16 @@ | |||
47 | .container-easing .easing-choice, | 47 | .container-easing .easing-choice, |
48 | .container-easing .easing-choices { | 48 | .container-easing .easing-choices { |
49 | width: 70px; | 49 | width: 70px; |
50 | white-space: nowrap; | ||
50 | } | 51 | } |
51 | 52 | ||
52 | /* line 58, ../scss/Span.scss */ | 53 | /* line 59, ../scss/Span.scss */ |
53 | .container-easing, | 54 | .container-easing, |
54 | .container-easing .easing-choice { | 55 | .container-easing .easing-choice { |
55 | height: 10px; | 56 | height: 10px; |
56 | } | 57 | } |
57 | 58 | ||
58 | /* line 61, ../scss/Span.scss */ | 59 | /* line 62, ../scss/Span.scss */ |
59 | .container-easing .easing-choice { | 60 | .container-easing .easing-choice { |
60 | position: absolute; | 61 | position: absolute; |
61 | top: 0px; | 62 | top: 0px; |
@@ -64,7 +65,7 @@ | |||
64 | cursor: pointer; | 65 | cursor: pointer; |
65 | } | 66 | } |
66 | 67 | ||
67 | /* line 68, ../scss/Span.scss */ | 68 | /* line 69, ../scss/Span.scss */ |
68 | .container-easing .easing-choices { | 69 | .container-easing .easing-choices { |
69 | position: absolute; | 70 | position: absolute; |
70 | display: none; | 71 | display: none; |
@@ -81,9 +82,25 @@ | |||
81 | padding: 0px; | 82 | padding: 0px; |
82 | } | 83 | } |
83 | 84 | ||
84 | /* line 83, ../scss/Span.scss */ | 85 | /* line 84, ../scss/Span.scss */ |
85 | .container-easing .easing-choices li { | 86 | .container-easing .easing-choices li { |
86 | list-style-type: none; | 87 | list-style-type: none; |
87 | margin: 0px; | 88 | margin: 0px; |
88 | padding: 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; | ||
89 | } | 106 | } |