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

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

Issue 2851213005: DevTools: brush up audits 2 launcher UI, allow multiple audit runs, introduce landing page. (Closed)
Patch Set: for landing Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/audits2/audits2Dialog.css
diff --git a/third_party/WebKit/Source/devtools/front_end/audits2/audits2Dialog.css b/third_party/WebKit/Source/devtools/front_end/audits2/audits2Dialog.css
new file mode 100644
index 0000000000000000000000000000000000000000..66a7628ca4eb4d5a476277659f75be80c320dad5
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/audits2/audits2Dialog.css
@@ -0,0 +1,75 @@
+/*
+ * Copyright 2017 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.audits2-view {
+ margin: 7px 20px;
+}
+
+header {
+ color: #666;
+ font-weight: bold;
+ font-size: 14px;
+}
+
+.audits2-form label {
+ display: flex;
+}
+
+.audits2-form label div {
+ display: inline;
+}
+
+.audits2-status .icon {
+ width: 16px;
+ height: 16px;
+ margin-top: 10px;
+ margin-right: 4px;
+ animation: spinner-animation 1200ms linear infinite;
+ transform-origin: 50% 50%;
+ padding: 1px;
+}
+
+.audits2-status .icon::before {
+ display: inline-block;
+ border: 1px solid #1565C0;
+ border-radius: 7px;
+ width: 14px;
+ height: 14px;
+ content: "";
+ position: absolute;
+ box-sizing: border-box;
+}
+
+.audits2-status .icon::after {
+ display: inline-block;
+ width: 6px;
+ height: 7px;
+ background: white;
+ position: absolute;
+ content: "";
+}
+
+button {
+ margin: 15px 10px;
+}
+
+.audits2-status .icon.error,
+.audits2-status .icon.error::before,
+.audits2-status .icon.error::after {
+ display: none;
+}
+
+.audits2-launcher-row {
+ padding: 6px;
+}
+
+.audits2-launcher-description {
+ padding: 3px 0 0 22px;
+}
+
+@keyframes spinner-animation {
+ from { transform: rotate(0); }
+ to { transform: rotate(360deg); }

Powered by Google App Engine
This is Rietveld 408576698