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

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

Issue 2888263002: DevTools: Roll Lighthouse binary to 2.0.1-alpha.0 (Closed)
Patch Set: rebase 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 margin: 7px 20px; 8 margin: 7px 20px;
9 flex: auto; 9 flex: auto;
10 align-items: center; 10 align-items: center;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 .audits2-status .icon::after { 53 .audits2-status .icon::after {
54 display: inline-block; 54 display: inline-block;
55 width: 24px; 55 width: 24px;
56 height: 28px; 56 height: 28px;
57 background: white; 57 background: white;
58 position: absolute; 58 position: absolute;
59 content: ""; 59 content: "";
60 } 60 }
61 61
62 .audits2-report-error {
63 display: block;
64 margin-top: 5px;
65 }
66
62 button { 67 button {
63 margin: 15px 10px; 68 margin: 15px 10px;
64 } 69 }
65 70
66 .audits2-status .icon.error, 71 .audits2-status .icon.error,
67 .audits2-status .icon.error::before, 72 .audits2-status .icon.error::before,
68 .audits2-status .icon.error::after { 73 .audits2-status .icon.error::after {
69 display: none; 74 display: none;
70 } 75 }
71 76
72 .audits2-launcher-row { 77 .audits2-launcher-row {
73 padding: 6px; 78 padding: 6px;
74 } 79 }
75 80
76 .audits2-launcher-description { 81 .audits2-launcher-description {
77 padding: 3px 0 0 22px; 82 padding: 3px 0 0 22px;
78 } 83 }
79 84
80 .audits2-dialog-buttons { 85 .audits2-dialog-buttons {
81 justify-content: center; 86 justify-content: center;
82 } 87 }
83 88
84 @keyframes spinner-animation { 89 @keyframes spinner-animation {
85 from { transform: rotate(0); } 90 from { transform: rotate(0); }
86 to { transform: rotate(360deg); } 91 to { transform: rotate(360deg); }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698