Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 body { | |
| 6 padding: 8px; | |
|
xiyuan
2013/12/06 00:24:37
nit: 2-space indent
jennyz
2013/12/06 03:54:24
Done.
| |
| 7 } | |
| 8 | |
| 9 h2 { | |
| 10 margin-bottom: 20px; | |
| 11 } | |
| 12 | |
| 13 .page { | |
| 14 display: none; | |
| 15 margin-left: 20px; | |
| 16 margin-right: 20px; | |
| 17 padding: 0; | |
| 18 } | |
| 19 | |
| 20 body[page='0'] #check-charger, | |
| 21 body[page='1'] #confirm-safe-charger { | |
| 22 display: block; | |
| 23 } | |
| 24 body[page='2'] #charger-update { | |
| 25 display: block; | |
| 26 } | |
| 27 body[page='3'] #order-charger-online { | |
| 28 display: block; | |
| 29 } | |
| 30 body[page='4'] #confirm-online-order { | |
| 31 display: block; | |
| 32 } | |
| 33 body[page='5'] #finish-not-order-charger { | |
| 34 display: block; | |
| 35 } | |
| 36 body[page='6'] #order-charger-offline { | |
| 37 display: block; | |
| 38 } | |
| 39 body[page='7'] #charger-still-bad { | |
| 40 display: block; | |
| 41 } | |
| 42 | |
| 43 .button-strip { | |
| 44 display: -webkit-flex; | |
| 45 justify-content: flex-end; | |
| 46 margin-top: 20px; | |
| 47 } | |
| 48 | |
| 49 .command-button { | |
| 50 width: 80px; | |
| 51 } | |
| 52 | |
| 53 .stop-use-recalled-charger { | |
| 54 font-weight: bold; | |
| 55 } | |
| 56 | |
| 57 .checkbox-label { | |
| 58 margin-left: 5px; | |
| 59 } | |
| 60 | |
| 61 .link { | |
| 62 color: blue; | |
| 63 cursor: pointer; | |
| 64 text-decoration: underline; | |
| 65 } | |
| 66 | |
| 67 #select-device-country { | |
| 68 width: 270px; | |
| 69 } | |
| 70 | |
| 71 #charger-selection { | |
| 72 display: -webkit-flex; | |
| 73 justify-content: space-between; | |
| 74 margin-bottom: 25px; | |
| 75 margin-top: 15px; | |
| 76 } | |
| 77 | |
| 78 #charger-selection img { | |
| 79 display: block; | |
| 80 } | |
| 81 | |
| 82 #safe-charger-checkmark { | |
| 83 display: block; | |
| 84 margin-left: auto; | |
| 85 margin-right: auto; | |
| 86 } | |
| 87 | |
| 88 #go-with-good-charger { | |
| 89 margin-bottom: 30px; | |
| 90 text-align: center; | |
| 91 } | |
| 92 | |
| 93 #safe-charger-checkmark { | |
| 94 margin-bottom: 40px; | |
| 95 margin-top: 40px; | |
| 96 } | |
| 97 | |
| 98 #back-to-check-charger { | |
| 99 margin-right: 10px; | |
| 100 } | |
| 101 | |
| 102 #new-charger-box { | |
| 103 border: 2px solid #999; | |
| 104 } | |
| 105 | |
| 106 #original-charger-box { | |
| 107 border: 2px solid #999; | |
| 108 } | |
| 109 | |
| 110 #charger-order-form { | |
| 111 border-style: none; | |
| 112 height: 500px; | |
| 113 width: 1100px; | |
| 114 } | |
| 115 | |
| 116 | |
|
xiyuan
2013/12/06 00:24:37
nit: nuke one empty line
jennyz
2013/12/06 03:54:24
Done.
| |
| 117 #back-to-check-charger-from-charger-update { | |
| 118 margin-right: 10px; | |
| 119 } | |
| 120 | |
| 121 #not-order-charger-checkbox-strip { | |
| 122 display: -webkit-flex; | |
| 123 margin-left: 20px; | |
| 124 margin-top: 5px; | |
| 125 } | |
| 126 | |
| 127 #offline-content { | |
| 128 display: -webkit-flex; | |
| 129 justify-content: space-between; | |
| 130 } | |
| 131 | |
| 132 #offline-order-contact { | |
| 133 font-weight: bold; | |
| 134 } | |
| 135 | |
| 136 #offline-content-left { | |
| 137 width: 450px; | |
| 138 } | |
| 139 | |
| 140 #offline-content-divider { | |
| 141 border: 1px solid #f5f5f5; | |
| 142 margin-left: 30px; | |
| 143 margin-right: 30px; | |
| 144 } | |
| 145 | |
| 146 #offline-content-right { | |
| 147 display: -webkit-flex; | |
| 148 flex-direction: column; | |
| 149 justify-content: space-between; | |
| 150 } | |
| 151 | |
| 152 #confirm-offline-order-checkbox-strip { | |
| 153 display: -webkit-flex; | |
| 154 flex-direction: row; | |
| 155 } | |
| 156 | |
| 157 #finish-still-bad-charger { | |
| 158 margin-top: 40px; | |
| 159 } | |
| OLD | NEW |