| OLD | NEW |
| (Empty) | |
| 1 /* |
| 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 |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .audits2-view { |
| 8 margin: 7px 20px; |
| 9 } |
| 10 |
| 11 header { |
| 12 color: #666; |
| 13 font-weight: bold; |
| 14 font-size: 14px; |
| 15 } |
| 16 |
| 17 .audits2-form label { |
| 18 display: flex; |
| 19 } |
| 20 |
| 21 .audits2-form label div { |
| 22 display: inline; |
| 23 } |
| 24 |
| 25 .audits2-status .icon { |
| 26 width: 16px; |
| 27 height: 16px; |
| 28 margin-top: 10px; |
| 29 margin-right: 4px; |
| 30 animation: spinner-animation 1200ms linear infinite; |
| 31 transform-origin: 50% 50%; |
| 32 padding: 1px; |
| 33 } |
| 34 |
| 35 .audits2-status .icon::before { |
| 36 display: inline-block; |
| 37 border: 1px solid #1565C0; |
| 38 border-radius: 7px; |
| 39 width: 14px; |
| 40 height: 14px; |
| 41 content: ""; |
| 42 position: absolute; |
| 43 box-sizing: border-box; |
| 44 } |
| 45 |
| 46 .audits2-status .icon::after { |
| 47 display: inline-block; |
| 48 width: 6px; |
| 49 height: 7px; |
| 50 background: white; |
| 51 position: absolute; |
| 52 content: ""; |
| 53 } |
| 54 |
| 55 button { |
| 56 margin: 15px 10px; |
| 57 } |
| 58 |
| 59 .audits2-status .icon.error, |
| 60 .audits2-status .icon.error::before, |
| 61 .audits2-status .icon.error::after { |
| 62 display: none; |
| 63 } |
| 64 |
| 65 .audits2-launcher-row { |
| 66 padding: 6px; |
| 67 } |
| 68 |
| 69 .audits2-launcher-description { |
| 70 padding: 3px 0 0 22px; |
| 71 } |
| 72 |
| 73 @keyframes spinner-animation { |
| 74 from { transform: rotate(0); } |
| 75 to { transform: rotate(360deg); } |
| OLD | NEW |