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

Side by Side 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, 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
10 align-items: center;
9 } 11 }
10 12
11 header { 13 header {
12 color: #666; 14 color: #666;
13 font-weight: bold; 15 font-weight: bold;
14 font-size: 14px; 16 font-size: 14px;
15 } 17 }
16 18
17 .audits2-form label { 19 .audits2-form label {
18 display: flex; 20 display: flex;
19 } 21 }
20 22
21 .audits2-form label div { 23 .audits2-form label div {
22 display: inline; 24 display: inline;
23 } 25 }
24 26
27 .audits2-status {
28 flex: auto;
29 align-items: center;
30 color: #666;
31 }
32
25 .audits2-status .icon { 33 .audits2-status .icon {
26 width: 16px; 34 width: 64px;
27 height: 16px; 35 height: 64px;
28 margin-top: 10px; 36 margin: 20px;
29 margin-right: 4px;
30 animation: spinner-animation 1200ms linear infinite; 37 animation: spinner-animation 1200ms linear infinite;
31 transform-origin: 50% 50%; 38 transform-origin: 50% 50%;
32 padding: 1px; 39 padding: 4px;
33 } 40 }
34 41
35 .audits2-status .icon::before { 42 .audits2-status .icon::before {
36 display: inline-block; 43 display: inline-block;
37 border: 1px solid #1565C0; 44 border: 4px solid #1565C0;
38 border-radius: 7px; 45 border-radius: 28px;
39 width: 14px; 46 width: 56px;
40 height: 14px; 47 height: 56px;
41 content: ""; 48 content: "";
42 position: absolute; 49 position: absolute;
43 box-sizing: border-box; 50 box-sizing: border-box;
44 } 51 }
45 52
46 .audits2-status .icon::after { 53 .audits2-status .icon::after {
47 display: inline-block; 54 display: inline-block;
48 width: 6px; 55 width: 24px;
49 height: 7px; 56 height: 28px;
50 background: white; 57 background: white;
51 position: absolute; 58 position: absolute;
52 content: ""; 59 content: "";
53 } 60 }
54 61
55 button { 62 button {
56 margin: 15px 10px; 63 margin: 15px 10px;
57 } 64 }
58 65
59 .audits2-status .icon.error, 66 .audits2-status .icon.error,
60 .audits2-status .icon.error::before, 67 .audits2-status .icon.error::before,
61 .audits2-status .icon.error::after { 68 .audits2-status .icon.error::after {
62 display: none; 69 display: none;
63 } 70 }
64 71
65 .audits2-launcher-row { 72 .audits2-launcher-row {
66 padding: 6px; 73 padding: 6px;
67 } 74 }
68 75
69 .audits2-launcher-description { 76 .audits2-launcher-description {
70 padding: 3px 0 0 22px; 77 padding: 3px 0 0 22px;
71 } 78 }
72 79
80 .audits2-dialog-buttons {
81 justify-content: center;
82 }
83
73 @keyframes spinner-animation { 84 @keyframes spinner-animation {
74 from { transform: rotate(0); } 85 from { transform: rotate(0); }
75 to { transform: rotate(360deg); } 86 to { transform: rotate(360deg); }
OLDNEW
« 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