Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/audits2/audits2Panel.css

Issue 2856653002: Roll Lighthouse & add error reporting (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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); }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698