| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 | 4 |
| 5 button.white-button, | 5 button.white-button, |
| 6 button.blue-button { | 6 button.blue-button { |
| 7 border: 5px solid transparent; | 7 border: 5px solid transparent; |
| 8 box-sizing: content-box; | 8 box-sizing: content-box; |
| 9 cursor: default; | 9 cursor: default; |
| 10 font-size: 14px; |
| 10 height: 21px; | 11 height: 21px; |
| 11 line-height: 21px; | 12 line-height: 21px; |
| 12 margin: 0; | 13 margin: 0; |
| 13 min-height: 21px; | 14 min-height: 21px; |
| 14 min-width: 55px; | 15 min-width: 55px; |
| 15 padding: 0 10px; | 16 padding: 0 10px; |
| 16 position: relative; | 17 position: relative; |
| 17 outline: none; | 18 outline: none; |
| 18 text-align: center; | 19 text-align: center; |
| 19 z-index: 1; | 20 z-index: 1; |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 background-image: -webkit-image-set( | 161 background-image: -webkit-image-set( |
| 161 url(chrome://resources/images/apps/checkbox_focused_checked.png) 1x, | 162 url(chrome://resources/images/apps/checkbox_focused_checked.png) 1x, |
| 162 url(chrome://resources/images/2x/apps/checkbox_focused_checked.png) 2x); | 163 url(chrome://resources/images/2x/apps/checkbox_focused_checked.png) 2x); |
| 163 } | 164 } |
| 164 | 165 |
| 165 input[type='checkbox']:disabled:checked::after { | 166 input[type='checkbox']:disabled:checked::after { |
| 166 background-image: -webkit-image-set( | 167 background-image: -webkit-image-set( |
| 167 url(chrome://resources/images/apps/checkbox_checked_inactive.png) 1x, | 168 url(chrome://resources/images/apps/checkbox_checked_inactive.png) 1x, |
| 168 url(chrome://resources/images/2x/apps/checkbox_checked_inactive.png) 2x); | 169 url(chrome://resources/images/2x/apps/checkbox_checked_inactive.png) 2x); |
| 169 } | 170 } |
| OLD | NEW |