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 #recently-closed-menu-button { | 5 #recently-closed-menu-button { |
6 -webkit-padding-end: 15px; | 6 -webkit-padding-end: 15px; |
7 -webkit-padding-start: 9px; | 7 -webkit-padding-start: 9px; |
8 background: none; | 8 background: none; |
9 border: 0; | 9 border: 0; |
10 color: #7F7F7F; | 10 color: #7F7F7F; |
11 cursor: pointer; | 11 cursor: pointer; |
12 display: block; | 12 display: block; |
13 margin: 0; | 13 margin: 0; |
14 font-size: 9pt; | 14 font-size: 9pt; |
15 font-weight: bold; | 15 font-weight: bold; |
16 height: 100%; | 16 height: 100%; |
17 /* The padding increases the clickable area. */ | 17 /* The padding increases the clickable area. */ |
18 padding-bottom: 0; | 18 padding-bottom: 0; |
19 padding-top: 0; | 19 padding-top: 0; |
20 -webkit-appearance: none; | 20 -webkit-appearance: none; |
21 -webkit-transition: opacity 200ms; | 21 -webkit-transition: opacity 200ms; |
22 -webkit-transition-delay: 100ms; | 22 -webkit-transition-delay: 100ms; |
23 } | 23 } |
24 | 24 |
| 25 .enable-cws-experiment #recently-closed-menu-button { |
| 26 position: relative; |
| 27 -webkit-margin-end: 0; |
| 28 -webkit-padding-end: 16px; |
| 29 } |
| 30 |
25 #recently-closed-menu-button:hover:not([menu-shown]) { | 31 #recently-closed-menu-button:hover:not([menu-shown]) { |
26 color: #666; | 32 color: #666; |
27 } | 33 } |
28 | 34 |
29 #recently-closed-menu-button:hover:not([menu-shown]) .disclosure-triangle { | 35 #recently-closed-menu-button:hover:not([menu-shown]) .disclosure-triangle { |
30 background-color: #666; | 36 background-color: #666; |
31 } | 37 } |
32 | 38 |
33 #recently-closed-menu-button[menu-shown] { | 39 #recently-closed-menu-button[menu-shown] { |
34 color: #555; | 40 color: #555; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 color: hsl(213, 90%, 24%) !important; | 106 color: hsl(213, 90%, 24%) !important; |
101 } | 107 } |
102 | 108 |
103 .disclosure-triangle { | 109 .disclosure-triangle { |
104 background-color: #7F7F7F; | 110 background-color: #7F7F7F; |
105 display: inline-block; | 111 display: inline-block; |
106 height: 9px; | 112 height: 9px; |
107 width: 9px; | 113 width: 9px; |
108 -webkit-mask-image: url('images/disclosure_triangle_mask.png'); | 114 -webkit-mask-image: url('images/disclosure_triangle_mask.png'); |
109 } | 115 } |
| 116 |
| 117 #vertical-separator { |
| 118 background-color: #B2B2B2; |
| 119 display: none; |
| 120 height: 20px; |
| 121 position: absolute; |
| 122 right: 0; |
| 123 top: 14px; |
| 124 width: 1px; |
| 125 } |
| 126 |
| 127 html[dir="rtl"] #vertical-separator { |
| 128 left: 0; |
| 129 right: auto; |
| 130 } |
| 131 |
| 132 .enable-cws-experiment #vertical-separator { |
| 133 display: inline-block; |
| 134 } |
OLD | NEW |