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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 button.white-button[disabled] { | 43 button.white-button[disabled] { |
44 border-image: -webkit-image-set( | 44 border-image: -webkit-image-set( |
45 url('chrome://resources/images/apps/button_inactive.png') 1x, | 45 url('chrome://resources/images/apps/button_inactive.png') 1x, |
46 url('chrome://resources/images/2x/apps/button_inactive.png') | 46 url('chrome://resources/images/2x/apps/button_inactive.png') |
47 2x) 5 fill / 5px / 2px repeat; | 47 2x) 5 fill / 5px / 2px repeat; |
48 } | 48 } |
49 | 49 |
50 button.blue-button { | 50 button.blue-button { |
51 border-image: -webkit-image-set( | 51 border-image: -webkit-image-set( |
52 url('chrome://resources/images/apps/blue_button.png') 1x, | 52 url('chrome://resources/images/apps/blue_button.png') 1x, |
53 url('chrome://resources/images/2x/apps/_bluebutton.png') | 53 url('chrome://resources/images/2x/apps/blue_button.png') |
54 2x) 5 fill / 5px / 2px repeat; | 54 2x) 5 fill / 5px / 2px repeat; |
55 } | 55 } |
56 | 56 |
57 button.blue-button:hover { | 57 button.blue-button:hover { |
58 border-image: -webkit-image-set( | 58 border-image: -webkit-image-set( |
59 url('chrome://resources/images/apps/blue_button_hover.png') 1x, | 59 url('chrome://resources/images/apps/blue_button_hover.png') 1x, |
60 url('chrome://resources/images/2x/apps/blue_button_hover.png') | 60 url('chrome://resources/images/2x/apps/blue_button_hover.png') |
61 2x) 5 fill / 5px / 2px repeat; | 61 2x) 5 fill / 5px / 2px repeat; |
62 } | 62 } |
63 | 63 |
(...skipping 30 matching lines...) Expand all Loading... |
94 background-image: -webkit-image-set( | 94 background-image: -webkit-image-set( |
95 url('chrome://resources/images/apps/checkbox.png') 1x, | 95 url('chrome://resources/images/apps/checkbox.png') 1x, |
96 url('chrome://resources/images/2x/apps/checkbox.png') 2x); | 96 url('chrome://resources/images/2x/apps/checkbox.png') 2x); |
97 } | 97 } |
98 | 98 |
99 input[type='checkbox']:checked::after { | 99 input[type='checkbox']:checked::after { |
100 background-image: -webkit-image-set( | 100 background-image: -webkit-image-set( |
101 url('chrome://resources/images/apps/checkbox_checked.png') 1x, | 101 url('chrome://resources/images/apps/checkbox_checked.png') 1x, |
102 url('chrome://resources/images/2x/apps/checkbox_checked.png') 2x); | 102 url('chrome://resources/images/2x/apps/checkbox_checked.png') 2x); |
103 } | 103 } |
OLD | NEW |