| 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 |
| 62 button { | 67 button { |
| 63 margin: 15px 10px; | 68 margin: 15px 10px; |
| 64 } | 69 } |
| 65 | 70 |
| 66 .audits2-status .icon.error, | 71 .audits2-status .icon.error, |
| 67 .audits2-status .icon.error::before, | 72 .audits2-status .icon.error::before, |
| 68 .audits2-status .icon.error::after { | 73 .audits2-status .icon.error::after { |
| 69 display: none; | 74 display: none; |
| 70 } | 75 } |
| 71 | 76 |
| 72 .audits2-launcher-row { | 77 .audits2-launcher-row { |
| 73 padding: 6px; | 78 padding: 6px; |
| 74 } | 79 } |
| 75 | 80 |
| 76 .audits2-launcher-description { | 81 .audits2-launcher-description { |
| 77 padding: 3px 0 0 22px; | 82 padding: 3px 0 0 22px; |
| 78 } | 83 } |
| 79 | 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); } |
| OLD | NEW |