Chromium Code Reviews| 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 #recently-closed-menu-button { | 6 #recently-closed-menu-button { |
| 7 background: none; | 7 background: none; |
| 8 border: 0; | 8 border: 0; |
| 9 display: block; | 9 display: block; |
| 10 font-size: 9pt; | 10 font-size: 9pt; |
| 11 font-weight: bold; | 11 font-weight: bold; |
| 12 -webkit-appearance: none; | 12 -webkit-appearance: none; |
| 13 -webkit-transition: opacity 0.2s; | 13 -webkit-transition: opacity 0.2s; |
| 14 -webkit-transition-delay: 0.1s; | 14 -webkit-transition-delay: 0.1s; |
| 15 } | 15 } |
| 16 | 16 |
| 17 /* Reserve space for the menu button even when it's hidden. */ | 17 /* Reserve space for the menu button even when it's hidden. */ |
| 18 #recently-closed-menu-button[hidden], | 18 #recently-closed-menu-button[hidden], |
| 19 #footer.dragging-mode #recently-closed-menu-button { | 19 #footer.showing-trash--mode #recently-closed-menu-button { |
|
Rick Byers
2011/08/08 15:24:15
s/--/-
Evan Stade
2011/08/08 18:26:58
Done.
| |
| 20 visibility: hidden; | 20 visibility: hidden; |
| 21 } | 21 } |
| 22 | 22 |
| 23 #footer.dragging-mode #recently-closed-menu-button { | 23 #footer.showing-trash-mode #recently-closed-menu-button { |
| 24 opacity: 0; | 24 opacity: 0; |
| 25 -webkit-transition-delay: 0; | 25 -webkit-transition-delay: 0; |
| 26 } | 26 } |
| 27 | 27 |
| 28 .recent-menu { | 28 .recent-menu { |
| 29 padding: 6px 8px; | 29 padding: 6px 8px; |
| 30 /* Needs to be above #footer. */ | 30 /* Needs to be above #footer. */ |
| 31 z-index: 10; | 31 z-index: 10; |
| 32 } | 32 } |
| 33 | 33 |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 58 .recent-menu-item:link { | 58 .recent-menu-item:link { |
| 59 color: hsl(213, 90%, 24%) !important; | 59 color: hsl(213, 90%, 24%) !important; |
| 60 } | 60 } |
| 61 | 61 |
| 62 .disclosure-triangle { | 62 .disclosure-triangle { |
| 63 display: inline-block; | 63 display: inline-block; |
| 64 height: 9px; | 64 height: 9px; |
| 65 width: 9px; | 65 width: 9px; |
| 66 -webkit-mask-image: url('./ntp4_disclosure_triangle_mask.png'); | 66 -webkit-mask-image: url('./ntp4_disclosure_triangle_mask.png'); |
| 67 } | 67 } |
| OLD | NEW |