| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 | 5 |
| 6 html, | 6 html, |
| 7 body, | 7 body, |
| 8 #contents, | 8 #contents, |
| 9 #signin-frame { | 9 #signin-frame { |
| 10 height: 100%; | 10 height: 100%; |
| 11 margin: 0; | 11 margin: 0; |
| 12 overflow: hidden; | 12 overflow: hidden; |
| 13 padding: 0; | 13 padding: 0; |
| 14 width: 100%; | 14 width: 100%; |
| 15 } | 15 } |
| 16 | 16 |
| 17 #signin-frame, | 17 #signin-frame, |
| 18 #spinner-container { | 18 #spinner-container { |
| 19 background-color: #f5f5f5; |
| 19 bottom: 0; | 20 bottom: 0; |
| 20 left: 0; | 21 left: 0; |
| 21 position: absolute; | 22 position: absolute; |
| 22 right: 0; | 23 right: 0; |
| 23 top: 0; | 24 top: 0; |
| 24 } | 25 } |
| 25 | 26 |
| 26 #spinner-container { | 27 #spinner-container { |
| 27 -webkit-box-align: center; | 28 -webkit-box-align: center; |
| 28 -webkit-box-pack: center; | 29 -webkit-box-pack: center; |
| 29 display: -webkit-box; | 30 display: -webkit-box; |
| 30 } | 31 } |
| 31 | 32 |
| 32 #contents.loading #signin-frame, | 33 #contents.loading #signin-frame, |
| 33 #contents:not(.loading) #spinner-container { | 34 #contents:not(.loading) #spinner-container { |
| 34 display: none; | 35 display: none; |
| 35 } | 36 } |
| OLD | NEW |