| 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 display: block; | 10 display: block; |
| 10 font-size: 9pt; | 11 font-size: 9pt; |
| 11 font-weight: bold; | 12 font-weight: bold; |
| 12 -webkit-appearance: none; | 13 -webkit-appearance: none; |
| 13 -webkit-transition: opacity 0.2s; | 14 -webkit-transition: opacity 0.2s; |
| 14 -webkit-transition-delay: 0.1s; | 15 -webkit-transition-delay: 0.1s; |
| 15 } | 16 } |
| 16 | 17 |
| 17 /* Reserve space for the menu button even when it's hidden. */ | 18 /* Reserve space for the menu button even when it's hidden. */ |
| 18 #recently-closed-menu-button[hidden], | 19 #recently-closed-menu-button[hidden], |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 } | 59 } |
| 59 | 60 |
| 60 /* TODO(estade): find a better color for active. */ | 61 /* TODO(estade): find a better color for active. */ |
| 61 .recent-menu-item:active, | 62 .recent-menu-item:active, |
| 62 .recent-menu-item:visited, | 63 .recent-menu-item:visited, |
| 63 .recent-menu-item:link { | 64 .recent-menu-item:link { |
| 64 color: hsl(213, 90%, 24%) !important; | 65 color: hsl(213, 90%, 24%) !important; |
| 65 } | 66 } |
| 66 | 67 |
| 67 .disclosure-triangle { | 68 .disclosure-triangle { |
| 69 background-color: #7F7F7F; |
| 68 display: inline-block; | 70 display: inline-block; |
| 69 height: 9px; | 71 height: 9px; |
| 70 width: 9px; | 72 width: 9px; |
| 71 -webkit-mask-image: url('./ntp4_disclosure_triangle_mask.png'); | 73 -webkit-mask-image: url('./ntp4_disclosure_triangle_mask.png'); |
| 72 } | 74 } |
| OLD | NEW |