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

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

Issue 2857773002: DevTools: update status / progress dialog in audits 2. (Closed)
Patch Set: same+format 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
index 66a7628ca4eb4d5a476277659f75be80c320dad5..038532378d8d8aedd226820d25534bd8ac597bb5 100644
--- a/third_party/WebKit/Source/devtools/front_end/audits2/audits2Dialog.css
+++ b/third_party/WebKit/Source/devtools/front_end/audits2/audits2Dialog.css
@@ -6,6 +6,8 @@
.audits2-view {
margin: 7px 20px;
+ flex: auto;
+ align-items: center;
}
header {
@@ -22,22 +24,27 @@ header {
display: inline;
}
+.audits2-status {
+ flex: auto;
+ align-items: center;
+ color: #666;
+}
+
.audits2-status .icon {
- width: 16px;
- height: 16px;
- margin-top: 10px;
- margin-right: 4px;
+ width: 64px;
+ height: 64px;
+ margin: 20px;
animation: spinner-animation 1200ms linear infinite;
transform-origin: 50% 50%;
- padding: 1px;
+ padding: 4px;
}
.audits2-status .icon::before {
display: inline-block;
- border: 1px solid #1565C0;
- border-radius: 7px;
- width: 14px;
- height: 14px;
+ border: 4px solid #1565C0;
+ border-radius: 28px;
+ width: 56px;
+ height: 56px;
content: "";
position: absolute;
box-sizing: border-box;
@@ -45,8 +52,8 @@ header {
.audits2-status .icon::after {
display: inline-block;
- width: 6px;
- height: 7px;
+ width: 24px;
+ height: 28px;
background: white;
position: absolute;
content: "";
@@ -70,6 +77,10 @@ button {
padding: 3px 0 0 22px;
}
+.audits2-dialog-buttons {
+ justify-content: center;
+}
+
@keyframes spinner-animation {
from { transform: rotate(0); }
to { transform: rotate(360deg); }
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698