| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * 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 |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. */ |
| 4 */ | |
| 5 | 4 |
| 6 /* This file contains "borrowed" copy of standard styles. To simplify merging, | 5 /* This file contains "borrowed" copy of standard styles. To simplify merging, |
| 7 * when altering, please preserve original property value by adding comments. | 6 * when altering, please preserve original property value by adding comments. |
| 8 */ | 7 */ |
| 9 input.common[type='checkbox'], | 8 input.common[type='checkbox'], |
| 10 input.common[type='radio'] { | 9 input.common[type='radio'] { |
| 11 -webkit-appearance: none; | 10 -webkit-appearance: none; |
| 12 -webkit-border-radius: 1px; | 11 -webkit-border-radius: 1px; |
| 13 -webkit-box-sizing: border-box; | 12 -webkit-box-sizing: border-box; |
| 14 border: 1px solid #C6C6C6; | 13 border: 1px solid #c6c6c6; |
| 15 border-radius: 1px; | 14 border-radius: 1px; |
| 16 box-sizing: border-box; | 15 box-sizing: border-box; |
| 17 cursor: default; | 16 cursor: default; |
| 18 height: 13px; | 17 height: 13px; |
| 19 margin: 0; | 18 margin: 0; |
| 20 width: 13px; | 19 width: 13px; |
| 21 } | 20 } |
| 22 | 21 |
| 23 input.common[type='checkbox'] { | 22 input.common[type='checkbox'] { |
| 24 position: relative; | 23 position: relative; |
| 25 } | 24 } |
| 26 | 25 |
| 27 input.common[type='checkbox']:checked::after { | 26 input.common[type='checkbox']:checked::after { |
| 28 background-image: url('../images/common/check_no_box.png'); | 27 background-image: url('../images/common/check_no_box.png'); |
| 29 background-position: -3px -4px; | 28 background-position: -3px -4px; |
| 30 } | 29 } |
| 31 | 30 |
| 32 input.common[type='checkbox']::after { | 31 input.common[type='checkbox']::after { |
| 33 content: ''; | 32 content: ''; |
| 34 display: -webkit-box; | 33 display: -webkit-box; |
| 35 height: 15px; | 34 height: 15px; |
| 36 left: -2px; | 35 left: -2px; |
| 37 position: absolute; | 36 position: absolute; |
| 38 top: -2px; | 37 top: -2px; |
| 39 width: 17px; | 38 width: 17px; |
| 40 } | 39 } |
| OLD | NEW |