| 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 color: #7F7F7F; | 9 color: #7F7F7F; |
| 10 cursor: pointer; | 10 cursor: pointer; |
| 11 display: block; | 11 display: block; |
| 12 font-size: 9pt; | 12 font-size: 9pt; |
| 13 font-weight: bold; | 13 font-weight: bold; |
| 14 /* The padding increases the clickable area. */ | 14 /* The padding increases the clickable area. */ |
| 15 padding-bottom: 8px; | 15 padding-bottom: 8px; |
| 16 padding-top: 8px; | 16 padding-top: 8px; |
| 17 -webkit-appearance: none; | 17 -webkit-appearance: none; |
| 18 -webkit-transition: opacity 0.2s; | 18 -webkit-transition: opacity 200ms; |
| 19 -webkit-transition-delay: 0.1s; | 19 -webkit-transition-delay: 100ms; |
| 20 } | 20 } |
| 21 | 21 |
| 22 /* Reserve space for the menu button even when it's hidden. */ | 22 /* Reserve space for the menu button even when it's hidden. */ |
| 23 #recently-closed-menu-button.invisible, | 23 #recently-closed-menu-button.invisible, |
| 24 #footer.showing-trash-mode #recently-closed-menu-button { | 24 #footer.showing-trash-mode #recently-closed-menu-button { |
| 25 visibility: hidden; | 25 visibility: hidden; |
| 26 } | 26 } |
| 27 | 27 |
| 28 #footer.showing-trash-mode #recently-closed-menu-button { | 28 #footer.showing-trash-mode #recently-closed-menu-button { |
| 29 opacity: 0; | 29 opacity: 0; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 color: hsl(213, 90%, 24%) !important; | 81 color: hsl(213, 90%, 24%) !important; |
| 82 } | 82 } |
| 83 | 83 |
| 84 .disclosure-triangle { | 84 .disclosure-triangle { |
| 85 background-color: #7F7F7F; | 85 background-color: #7F7F7F; |
| 86 display: inline-block; | 86 display: inline-block; |
| 87 height: 9px; | 87 height: 9px; |
| 88 width: 9px; | 88 width: 9px; |
| 89 -webkit-mask-image: url('images/disclosure_triangle_mask.png'); | 89 -webkit-mask-image: url('images/disclosure_triangle_mask.png'); |
| 90 } | 90 } |
| OLD | NEW |