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 /* The shield that overlays the background. */ | 5 /* The shield that overlays the background. */ |
6 .overlay { | 6 .overlay { |
7 -webkit-box-align: center; | 7 -webkit-box-align: center; |
8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
9 -webkit-box-pack: center; | 9 -webkit-box-pack: center; |
10 /* TODO(dbeam): remove perspective when http://crbug.com/374970 is fixed. */ | 10 /* TODO(dbeam): remove perspective when http://crbug.com/374970 is fixed. */ |
(...skipping 28 matching lines...) Expand all Loading... |
39 display: -webkit-box; | 39 display: -webkit-box; |
40 min-width: 400px; | 40 min-width: 400px; |
41 padding: 0; | 41 padding: 0; |
42 position: relative; | 42 position: relative; |
43 z-index: 0; | 43 z-index: 0; |
44 } | 44 } |
45 | 45 |
46 /* If the options page is loading don't do the transition. */ | 46 /* If the options page is loading don't do the transition. */ |
47 .loading .overlay, | 47 .loading .overlay, |
48 .loading .overlay .page { | 48 .loading .overlay .page { |
49 -webkit-transition-duration: 0 !important; | 49 -webkit-transition-duration: 0ms !important; |
50 } | 50 } |
51 | 51 |
52 /* keyframes used to pulse the overlay */ | 52 /* keyframes used to pulse the overlay */ |
53 @-webkit-keyframes pulse { | 53 @-webkit-keyframes pulse { |
54 0% { | 54 0% { |
55 -webkit-transform: scale(1); | 55 -webkit-transform: scale(1); |
56 } | 56 } |
57 40% { | 57 40% { |
58 -webkit-transform: scale(1.02); | 58 -webkit-transform: scale(1.02); |
59 } | 59 } |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 #overlay-container-1 { | 194 #overlay-container-1 { |
195 z-index: 11; | 195 z-index: 11; |
196 } | 196 } |
197 #overlay-container-2 { | 197 #overlay-container-2 { |
198 z-index: 12; | 198 z-index: 12; |
199 } | 199 } |
200 | 200 |
201 .transparent { | 201 .transparent { |
202 opacity: 0; | 202 opacity: 0; |
203 } | 203 } |
OLD | NEW |