OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 div { | 7 div { |
8 background-image: url(Images/toolbarButtonGlyphs.png); | 8 background-image: url(Images/toolbarButtonGlyphs.png); |
9 background-size: 352px 144px; | 9 background-size: 352px 168px; |
10 } | 10 } |
11 | 11 |
12 @media (-webkit-min-device-pixel-ratio: 1.5) { | 12 @media (-webkit-min-device-pixel-ratio: 1.5) { |
13 div { | 13 div { |
14 background-image: url(Images/toolbarButtonGlyphs_2x.png); | 14 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
15 } | 15 } |
16 } /* media */ | 16 } /* media */ |
17 | 17 |
18 .close-button { | 18 .close-button { |
19 width: 14px; | 19 width: 14px; |
(...skipping 16 matching lines...) Expand all Loading... |
36 background-position: -175px -96px; | 36 background-position: -175px -96px; |
37 } | 37 } |
38 | 38 |
39 .close-button-gray:hover { | 39 .close-button-gray:hover { |
40 background-position: -143px -96px; | 40 background-position: -143px -96px; |
41 } | 41 } |
42 | 42 |
43 .close-button-gray:active { | 43 .close-button-gray:active { |
44 background-position: -160px -96px; | 44 background-position: -160px -96px; |
45 } | 45 } |
OLD | NEW |