blob: 61d9ff1eed96d96ce71266e976e47a33a050c741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
</copyright> */
/*
<section data-montage-id="objects-panel" class="objects-panel">
<ul data-montage-id="list" class="objects-list">
<li data-montage-id="list-item" class="list-item"></li>
</ul>
</section>
*/
.objects-list {
font-size: 11px;
margin: 10px 0 0 0;
padding: 0;
text-shadow: -1px -1px 0 #4D4D4D;
}
.objects-tray {
background-color: rgba(0,0,0,.6);
border-top-right-radius: 8px;
border-top-left-radius: 8px;
box-shadow: inset 0 0 3px #333;
padding: 0 10px 5px;
margin: 0 auto;
overflow: hidden;
-webkit-box-flex: 0;
-webkit-transition: -webkit-transform .5s cubic-bezier(.44,.19,0,.99);
-webkit-transform-origin: center bottom;
}
.hide-objects-tray {
/*-webkit-transform: scale(0);*/
-webkit-transform: translate3d(0, 100px, 0) scale(.5);
}
|