| 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 html { |
| 6 height: 100%; |
| 7 width: 100%; |
| 8 } |
| 9 |
| 5 body { | 10 body { |
| 6 font-family: sans-serif; | 11 font-family: sans-serif; |
| 7 margin: 0; | 12 margin: 0; |
| 8 overflow: hidden; | 13 overflow: hidden; |
| 9 text-align: center; | 14 text-align: center; |
| 10 -webkit-user-select: none; | 15 -webkit-user-select: none; |
| 16 height: 100%; |
| 17 width: 100%; |
| 11 } | 18 } |
| 12 | 19 |
| 13 h1 { | 20 h1 { |
| 14 font-size: 10pt; | 21 font-size: 10pt; |
| 15 font-weight: normal; | 22 font-weight: normal; |
| 16 padding: 0pt 10pt; | 23 padding: 0pt 10pt; |
| 17 <if expr="not is_android and not chromeos"> | 24 <if expr="not is_android and not chromeos"> |
| 18 visibility: hidden; | 25 visibility: hidden; |
| 19 </if> | 26 </if> |
| 20 } | 27 } |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 background-image: -webkit-image-set( | 77 background-image: -webkit-image-set( |
| 71 url(../../../ui/resources/default_100_percent/close_2_hover.png) 1x, | 78 url(../../../ui/resources/default_100_percent/close_2_hover.png) 1x, |
| 72 url(../../../ui/resources/default_200_percent/close_2_hover.png) 2x); | 79 url(../../../ui/resources/default_200_percent/close_2_hover.png) 2x); |
| 73 } | 80 } |
| 74 | 81 |
| 75 #close:active { | 82 #close:active { |
| 76 background-image: -webkit-image-set( | 83 background-image: -webkit-image-set( |
| 77 url(../../../ui/resources/default_100_percent/close_2_pressed.png) 1x, | 84 url(../../../ui/resources/default_100_percent/close_2_pressed.png) 1x, |
| 78 url(../../../ui/resources/default_200_percent/close_2_pressed.png) 2x); | 85 url(../../../ui/resources/default_200_percent/close_2_pressed.png) 2x); |
| 79 } | 86 } |
| OLD | NEW |