| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2013 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 body { | 7 body { |
| 8 font-family: Arial, sans-serif; | 8 font-family: Arial, sans-serif; |
| 9 font-size: 12px; | 9 font-size: 12px; |
| 10 margin: 10px; | 10 margin: 10px 20px; |
| 11 min-width: 47em; | 11 min-width: 47em; |
| 12 padding-bottom: 65px; | 12 padding-bottom: 65px; |
| 13 } | 13 } |
| 14 | 14 |
| 15 img { | 15 img { |
| 16 float: left; | 16 float: left; |
| 17 height: 16px; | 17 height: 16px; |
| 18 padding-right: 5px; | 18 padding-right: 5px; |
| 19 width: 16px; | 19 width: 16px; |
| 20 } | 20 } |
| 21 | 21 |
| 22 .row { | 22 .row { |
| 23 border-bottom: 1px solid #A0A0A0; | 23 border-bottom: 1px solid #A0A0A0; |
| 24 padding: 5px; | 24 padding: 5px; |
| 25 } | 25 } |
| 26 | 26 |
| 27 .url { | 27 .url { |
| 28 color: #A0A0A0; | 28 color: #A0A0A0; |
| 29 } | 29 } |
| 30 | 30 |
| 31 p { |
| 32 line-height: 1.2em; |
| 33 } |
| 34 |
| 35 .columns { |
| 36 display: flex; |
| 37 } |
| 38 |
| 39 .column { |
| 40 flex-basis: 50%; |
| 41 } |
| 42 |
| 43 .checkbox_row { |
| 44 display: flex; |
| 45 align-items: center; |
| 46 } |
| 47 |
| 48 .checkbox_wrapper { |
| 49 width: 32px; |
| 50 margin: 0 0 2px 0; |
| 51 padding: 0; |
| 52 flex-grow: 0; |
| 53 } |
| 54 |
| 55 .secondary { |
| 56 margin: 0 0 12px 32px; |
| 57 color: #696969; |
| 58 } |
| 59 |
| 60 label { |
| 61 margin: 0 0 2px 0; |
| 62 padding: 0; |
| 63 flex-grow: 1; |
| 64 } |
| 65 |
| 66 label.disabled { |
| 67 color: #696969; |
| 68 } |
| 69 |
| 70 label input[type="checkbox"] { |
| 71 margin-right: 6px; |
| 72 } |
| OLD | NEW |