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

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

Issue 2901133002: DevTools: Disable Audits2 buttons when service worker is active (Closed)
Patch Set: add stack logging 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 } 70 }
71 71
72 .audits2-launcher-row { 72 .audits2-launcher-row {
73 padding: 6px; 73 padding: 6px;
74 } 74 }
75 75
76 .audits2-launcher-description { 76 .audits2-launcher-description {
77 padding: 3px 0 0 22px; 77 padding: 3px 0 0 22px;
78 } 78 }
79 79
80 .audits2-dialog-help-text {
81 color: red;
82 margin-top: 10px;
83 }
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