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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 | 172 |
173 .gray-bottom-bar { | 173 .gray-bottom-bar { |
174 background-color: #f5f5f5; | 174 background-color: #f5f5f5; |
175 border-color: #e7e7e7; | 175 border-color: #e7e7e7; |
176 border-top-style: solid; | 176 border-top-style: solid; |
177 border-width: 1px; | 177 border-width: 1px; |
178 color: #888; | 178 color: #888; |
179 display: -webkit-box; | 179 display: -webkit-box; |
180 padding: 14px 17px; | 180 padding: 14px 17px; |
181 } | 181 } |
| 182 |
| 183 /* Prevent the page underneath the overlay from scrolling. */ |
| 184 .frozen { |
| 185 position: fixed; |
| 186 } |
| 187 |
| 188 #overlay-container-1 { |
| 189 z-index: 11; |
| 190 } |
| 191 #overlay-container-2 { |
| 192 z-index: 12; |
| 193 } |
| 194 |
| 195 .transparent { |
| 196 opacity: 0; |
| 197 } |
OLD | NEW |