OLD | NEW |
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 Loading... |
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); } |
OLD | NEW |