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; |
11 } | 11 } |
12 | 12 |
13 h1 { | 13 h1 { |
14 font-size: 10pt; | 14 font-size: 10pt; |
15 font-weight: normal; | 15 font-weight: normal; |
16 padding: 0pt 10pt; | 16 padding: 0pt 10pt; |
17 <if expr="not is_android and not pp_ifdef('chromeos')"> | 17 <if expr="not is_android and not chromeos"> |
18 visibility: hidden; | 18 visibility: hidden; |
19 </if> | 19 </if> |
20 } | 20 } |
21 | 21 |
22 #outer:hover h1, #outer:hover #close { | 22 #outer:hover h1, #outer:hover #close { |
23 visibility: visible; | 23 visibility: visible; |
24 } | 24 } |
25 | 25 |
26 p { | 26 p { |
27 font-size: 8pt; | 27 font-size: 8pt; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 background-image: -webkit-image-set( | 70 background-image: -webkit-image-set( |
71 url('../../../ui/resources/default_100_percent/close_2_hover.png') 1x, | 71 url('../../../ui/resources/default_100_percent/close_2_hover.png') 1x, |
72 url('../../../ui/resources/default_200_percent/close_2_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_2_pressed.png') 1x, | 77 url('../../../ui/resources/default_100_percent/close_2_pressed.png') 1x, |
78 url('../../../ui/resources/default_200_percent/close_2_pressed.png') 2x); | 78 url('../../../ui/resources/default_200_percent/close_2_pressed.png') 2x); |
79 } | 79 } |
OLD | NEW |