diff options
author | Jon Reid | 2012-06-26 14:58:10 -0700 |
---|---|---|
committer | Jon Reid | 2012-06-26 14:58:10 -0700 |
commit | 2599f74d72293b809929d8a0b36fb8e721f194cd (patch) | |
tree | ca4cd45b23b8debea32f95d7dea807c77b6633b2 /js/stage/objects-tray.reel/objects-tray.css | |
parent | ab9d14780eed98f39786fae4518e69861b34bad7 (diff) | |
parent | e4304b9ac6c58802de4dd334be1f5802533f5160 (diff) | |
download | ninja-2599f74d72293b809929d8a0b36fb8e721f194cd.tar.gz |
Merge remote-tracking branch 'ninja-jduran/TimelineUber' into timeline-local
Diffstat (limited to 'js/stage/objects-tray.reel/objects-tray.css')
-rw-r--r-- | js/stage/objects-tray.reel/objects-tray.css | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/js/stage/objects-tray.reel/objects-tray.css b/js/stage/objects-tray.reel/objects-tray.css new file mode 100644 index 00000000..61d9ff1e --- /dev/null +++ b/js/stage/objects-tray.reel/objects-tray.css | |||
@@ -0,0 +1,41 @@ | |||
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 | /* | ||
8 | |||
9 | <section data-montage-id="objects-panel" class="objects-panel"> | ||
10 | <ul data-montage-id="list" class="objects-list"> | ||
11 | <li data-montage-id="list-item" class="list-item"></li> | ||
12 | </ul> | ||
13 | </section> | ||
14 | |||
15 | */ | ||
16 | |||
17 | .objects-list { | ||
18 | font-size: 11px; | ||
19 | margin: 10px 0 0 0; | ||
20 | padding: 0; | ||
21 | text-shadow: -1px -1px 0 #4D4D4D; | ||
22 | } | ||
23 | |||
24 | .objects-tray { | ||
25 | background-color: rgba(0,0,0,.6); | ||
26 | border-top-right-radius: 8px; | ||
27 | border-top-left-radius: 8px; | ||
28 | box-shadow: inset 0 0 3px #333; | ||
29 | padding: 0 10px 5px; | ||
30 | margin: 0 auto; | ||
31 | overflow: hidden; | ||
32 | -webkit-box-flex: 0; | ||
33 | -webkit-transition: -webkit-transform .5s cubic-bezier(.44,.19,0,.99); | ||
34 | -webkit-transform-origin: center bottom; | ||
35 | |||
36 | } | ||
37 | |||
38 | .hide-objects-tray { | ||
39 | /*-webkit-transform: scale(0);*/ | ||
40 | -webkit-transform: translate3d(0, 100px, 0) scale(.5); | ||
41 | } \ No newline at end of file | ||