OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 .toolbar-container { | 6 .toolbar-container { |
7 position: fixed; | 7 position: fixed; |
8 top: -45px; | 8 top: -45px; |
9 width: 640px; | 9 width: 640px; |
10 left: 50%; | 10 left: 50%; |
11 margin-left: -320px; | 11 margin-left: -320px; |
12 -webkit-transition: top 0.2s linear; | 12 -webkit-transition: top 0.2s linear; |
13 -webkit-transition-delay: 0.7s; | 13 -webkit-transition-delay: 0.7s; |
14 font-size: 13px; | 14 font-size: 13px; |
| 15 z-index: 1; |
15 } | 16 } |
16 | 17 |
17 .toolbar-container button { | 18 .toolbar-container button { |
18 padding: 3px 9px; | 19 padding: 3px 9px; |
19 } | 20 } |
20 | 21 |
21 .toolbar-container:hover, .toolbar-preview { | 22 .toolbar-container:hover, .toolbar-preview { |
22 top: -8px; | 23 top: -8px; |
23 -webkit-transition-delay: 0s; | 24 -webkit-transition-delay: 0s; |
24 } | 25 } |
(...skipping 21 matching lines...) Expand all Loading... |
46 display: inline-block; | 47 display: inline-block; |
47 max-width: 280px; | 48 max-width: 280px; |
48 overflow: hidden; | 49 overflow: hidden; |
49 margin-__MSG_@@bidi_end_edge__: 8px; | 50 margin-__MSG_@@bidi_end_edge__: 8px; |
50 white-space: nowrap; | 51 white-space: nowrap; |
51 } | 52 } |
52 | 53 |
53 .end-align { | 54 .end-align { |
54 float: __MSG_@@bidi_end_edge__; | 55 float: __MSG_@@bidi_end_edge__; |
55 } | 56 } |
OLD | NEW |