OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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: absolute; | 7 position: fixed; |
8 top: -48px; | 8 top: -48px; |
9 width: 640px; | 9 width: 640px; |
10 -webkit-transition: top 0.15s ease; | 10 -webkit-transition: top 0.15s ease; |
11 font-size: 13px; | 11 font-size: 13px; |
12 pointer-events: none; | 12 pointer-events: none; |
13 z-index: 1; | 13 z-index: 1; |
14 } | 14 } |
15 | 15 |
16 .toolbar-visible { | 16 .toolbar-visible { |
17 top: -8px; | 17 top: -8px; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 } | 85 } |
86 | 86 |
87 | 87 |
88 .toolbar-stub:hover .arrow-down { | 88 .toolbar-stub:hover .arrow-down { |
89 opacity: 1.0; | 89 opacity: 1.0; |
90 } | 90 } |
91 | 91 |
92 .toolbar-visible .arrow-down { | 92 .toolbar-visible .arrow-down { |
93 -webkit-transform: rotate(180deg); | 93 -webkit-transform: rotate(180deg); |
94 } | 94 } |
OLD | NEW |