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

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

Issue 2894113002: Revert of DevTools: Roll Lighthouse binary to 2.0.0-alpha.7 (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 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
67 button { 62 button {
68 margin: 15px 10px; 63 margin: 15px 10px;
69 } 64 }
70 65
71 .audits2-status .icon.error, 66 .audits2-status .icon.error,
72 .audits2-status .icon.error::before, 67 .audits2-status .icon.error::before,
73 .audits2-status .icon.error::after { 68 .audits2-status .icon.error::after {
74 display: none; 69 display: none;
75 } 70 }
76 71
77 .audits2-launcher-row { 72 .audits2-launcher-row {
78 padding: 6px; 73 padding: 6px;
79 } 74 }
80 75
81 .audits2-launcher-description { 76 .audits2-launcher-description {
82 padding: 3px 0 0 22px; 77 padding: 3px 0 0 22px;
83 } 78 }
84 79
85 .audits2-dialog-buttons { 80 .audits2-dialog-buttons {
86 justify-content: center; 81 justify-content: center;
87 } 82 }
88 83
89 @keyframes spinner-animation { 84 @keyframes spinner-animation {
90 from { transform: rotate(0); } 85 from { transform: rotate(0); }
91 to { transform: rotate(360deg); } 86 to { transform: rotate(360deg); }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698