| 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 | 4 |
| 5 body { | 5 body { |
| 6 font-family: sans-serif; | 6 font-family: sans-serif; |
| 7 margin: 0; | 7 margin: 0; |
| 8 overflow: hidden; | 8 overflow: hidden; |
| 9 text-align: center; | 9 text-align: center; |
| 10 -webkit-user-select: none; | 10 -webkit-user-select: none; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 <if expr="not pp_ifdef('android')"> | 53 <if expr="not pp_ifdef('android')"> |
| 54 visibility: hidden; | 54 visibility: hidden; |
| 55 </if> | 55 </if> |
| 56 cursor: pointer; | 56 cursor: pointer; |
| 57 position: absolute; | 57 position: absolute; |
| 58 right: 3px; | 58 right: 3px; |
| 59 top: 3px; | 59 top: 3px; |
| 60 height: 14px; | 60 height: 14px; |
| 61 width: 14px; | 61 width: 14px; |
| 62 background-image: -webkit-image-set( | 62 background-image: -webkit-image-set( |
| 63 url('../../../ui/resources/default_100_percent/close_bar.png') 1x, | 63 url('../../../ui/resources/default_100_percent/close_2.png') 1x, |
| 64 url('../../../ui/resources/default_200_percent/close_bar.png') 2x); | 64 url('../../../ui/resources/default_200_percent/close_2.png') 2x); |
| 65 background-position: right top; | 65 background-position: right top; |
| 66 background-repeat: no-repeat; | 66 background-repeat: no-repeat; |
| 67 } | 67 } |
| 68 | 68 |
| 69 #close:hover { | 69 #close:hover { |
| 70 background-image: -webkit-image-set( | 70 background-image: -webkit-image-set( |
| 71 url('../../../ui/resources/default_100_percent/close_bar_hover.png') 1x, | 71 url('../../../ui/resources/default_100_percent/close_2_hover.png') 1x, |
| 72 url('../../../ui/resources/default_200_percent/close_bar_hover.png') 2x); | 72 url('../../../ui/resources/default_200_percent/close_2_hover.png') 2x); |
| 73 } | 73 } |
| 74 | 74 |
| 75 #close:active { | 75 #close:active { |
| 76 background-image: -webkit-image-set( | 76 background-image: -webkit-image-set( |
| 77 url('../../../ui/resources/default_100_percent/close_bar_pressed.png') 1x, | 77 url('../../../ui/resources/default_100_percent/close_2_pressed.png') 1x, |
| 78 url('../../../ui/resources/default_200_percent/close_bar_pressed.png') | 78 url('../../../ui/resources/default_200_percent/close_2_pressed.png') 2x); |
| 79 2x); | |
| 80 } | 79 } |
| OLD | NEW |