OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2017 The Chromium Authors. All rights reserved. | 2 * Copyright 2017 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .audits2-view { | 7 .audits2-view { |
8 max-width: 550px; | 8 max-width: 550px; |
9 min-width: 334px; | 9 min-width: 334px; |
10 align-self: center; | 10 align-self: center; |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 | 156 |
157 .audits2-status .icon::after { | 157 .audits2-status .icon::after { |
158 display: inline-block; | 158 display: inline-block; |
159 width: 6px; | 159 width: 6px; |
160 height: 7px; | 160 height: 7px; |
161 background: white; | 161 background: white; |
162 position: absolute; | 162 position: absolute; |
163 content: ""; | 163 content: ""; |
164 } | 164 } |
165 | 165 |
| 166 .audits2-status .icon.error, |
| 167 .audits2-status .icon.error::before, |
| 168 .audits2-status .icon.error::after { |
| 169 display:none; |
| 170 } |
| 171 |
| 172 .lh-root { |
| 173 --report-menu-width: 0 !important; |
| 174 } |
| 175 |
| 176 |
166 @keyframes spinner-animation { | 177 @keyframes spinner-animation { |
167 from { transform: rotate(0); } | 178 from { transform: rotate(0); } |
168 to { transform: rotate(360deg); } | 179 to { transform: rotate(360deg); } |
OLD | NEW |