| OLD | NEW |
| 1 /* | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 3 * found in the LICENSE file. */ |
| 5 */ | |
| 6 | 4 |
| 7 /* | 5 /* This file contains "borrowed" copy of standard styles. To simplify merging, |
| 8 * This file contains "borrowed" copy of standard styles. To simplify merging, | |
| 9 * when altering, please preserve original property value by adding comments. | 6 * when altering, please preserve original property value by adding comments. |
| 10 */ | 7 */ |
| 11 input.common[type="checkbox"], input.common[type="radio"] { | 8 input.common[type='checkbox'], |
| 9 input.common[type='radio'] { |
| 12 -webkit-appearance: none; | 10 -webkit-appearance: none; |
| 13 width: 13px; | 11 -webkit-border-radius: 1px; |
| 14 height: 13px; | 12 -webkit-box-sizing: border-box; |
| 15 border: 1px solid #C6C6C6; | 13 border: 1px solid #C6C6C6; |
| 16 margin: 0; | |
| 17 -webkit-border-radius: 1px; | |
| 18 border-radius: 1px; | 14 border-radius: 1px; |
| 19 -webkit-box-sizing: border-box; | |
| 20 box-sizing: border-box; | 15 box-sizing: border-box; |
| 21 cursor: default; | 16 cursor: default; |
| 22 /* position: relative;*/ | 17 height: 13px; |
| 18 margin: 0; |
| 19 width: 13px; |
| 23 } | 20 } |
| 24 | 21 |
| 25 input.common[type="checkbox"]:checked::after { | 22 input.common[type='checkbox']:checked::after { |
| 26 content: url('../images/common/check_no_box.png'); | 23 content: url('../images/common/check_no_box.png'); |
| 27 display: block; | 24 display: block; |
| 25 left: -5px; |
| 28 position: absolute; | 26 position: absolute; |
| 29 top: -6px; | 27 top: -6px; |
| 30 left: -5px; | 28 } |
| 31 } | |
| OLD | NEW |