| 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 height: 21px; | 10 height: 21px; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 button.blue-button:active { | 85 button.blue-button:active { |
| 86 border-image: -webkit-image-set( | 86 border-image: -webkit-image-set( |
| 87 url('chrome://resources/images/apps/blue_button_pressed.png') 1x, | 87 url('chrome://resources/images/apps/blue_button_pressed.png') 1x, |
| 88 url('chrome://resources/images/2x/apps/blue_button_pressed.png') | 88 url('chrome://resources/images/2x/apps/blue_button_pressed.png') |
| 89 2x) 5 fill / 5px / 2px repeat; | 89 2x) 5 fill / 5px / 2px repeat; |
| 90 } | 90 } |
| 91 | 91 |
| 92 button.blue-button:focus { | 92 button.blue-button:focus { |
| 93 border-image: -webkit-image-set( | 93 border-image: -webkit-image-set( |
| 94 url('chrome://resources/images/apps/blue_button_focused.png') 1x, | 94 url('chrome://resources/images/apps/blue_button_focused.png') 1x, |
| 95 url('chrome://resources/images/2x/apps/_bluebutton.png') | 95 url('chrome://resources/images/2x/apps/blue_button_focused.png') |
| 96 2x) 5 fill / 5px / 2px repeat; | 96 2x) 5 fill / 5px / 2px repeat; |
| 97 } | 97 } |
| 98 | 98 |
| 99 button.blue-button:focus:hover { | 99 button.blue-button:focus:hover { |
| 100 border-image: -webkit-image-set( | 100 border-image: -webkit-image-set( |
| 101 url('chrome://resources/images/apps/blue_button_focused_hover.png') 1x, | 101 url('chrome://resources/images/apps/blue_button_focused_hover.png') 1x, |
| 102 url('chrome://resources/images/2x/apps/blue_button_focused_hover.png') | 102 url('chrome://resources/images/2x/apps/blue_button_focused_hover.png') |
| 103 2x) 5 fill / 5px / 2px repeat; | 103 2x) 5 fill / 5px / 2px repeat; |
| 104 } | 104 } |
| 105 | 105 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 background-image: -webkit-image-set( | 160 background-image: -webkit-image-set( |
| 161 url('chrome://resources/images/apps/checkbox_focused_checked.png') 1x, | 161 url('chrome://resources/images/apps/checkbox_focused_checked.png') 1x, |
| 162 url('chrome://resources/images/2x/apps/checkbox_focused_checked.png') 2x); | 162 url('chrome://resources/images/2x/apps/checkbox_focused_checked.png') 2x); |
| 163 } | 163 } |
| 164 | 164 |
| 165 input[type='checkbox']:disabled:checked::after { | 165 input[type='checkbox']:disabled:checked::after { |
| 166 background-image: -webkit-image-set( | 166 background-image: -webkit-image-set( |
| 167 url('chrome://resources/images/apps/checkbox_checked_inactive.png') 1x, | 167 url('chrome://resources/images/apps/checkbox_checked_inactive.png') 1x, |
| 168 url('chrome://resources/images/2x/apps/checkbox_checked_inactive.png') 2x); | 168 url('chrome://resources/images/2x/apps/checkbox_checked_inactive.png') 2x); |
| 169 } | 169 } |
| OLD | NEW |