| 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 #user-image { | 6 #user-image { |
| 7 min-height: 443px; | 7 min-height: 443px; |
| 8 padding: 70px 17px 21px; | 8 padding: 70px 17px 21px; |
| 9 width: 702px; | 9 width: 702px; |
| 10 } | 10 } |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 position: relative; | 71 position: relative; |
| 72 } | 72 } |
| 73 | 73 |
| 74 #profile-image { | 74 #profile-image { |
| 75 position: relative; | 75 position: relative; |
| 76 } | 76 } |
| 77 | 77 |
| 78 /* White background for spinner styled like user image */ | 78 /* White background for spinner styled like user image */ |
| 79 #profile-image .spinner-bg { | 79 #profile-image .spinner-bg { |
| 80 background-color: white; | 80 background-color: white; |
| 81 display: none; |
| 81 height: 50px; | 82 height: 50px; |
| 82 left: 3px; | 83 left: 3px; |
| 83 position: absolute; | 84 position: absolute; |
| 84 top: 3px; | 85 top: 3px; |
| 85 visibility: hidden; | |
| 86 width: 50px; | 86 width: 50px; |
| 87 } | 87 } |
| 88 | 88 |
| 89 .profile-image-loading #profile-image .spinner-bg { | 89 .profile-image-loading #profile-image .spinner-bg { |
| 90 visibility: visible; | 90 display: block; |
| 91 } | 91 } |
| 92 | 92 |
| 93 #profile-image .spinner { | 93 #profile-image .spinner { |
| 94 left: 14px; | 94 left: 14px; |
| 95 position: absolute; | 95 position: absolute; |
| 96 top: 14px; | 96 top: 14px; |
| 97 } | 97 } |
| 98 | 98 |
| 99 html[dir=rtl] #user-image-preview { | 99 html[dir=rtl] #user-image-preview { |
| 100 float: left; | 100 float: left; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 } | 252 } |
| 253 | 253 |
| 254 .camera.live:not(.online) .user-image-stream-area .spinner { | 254 .camera.live:not(.online) .user-image-stream-area .spinner { |
| 255 display: block; | 255 display: block; |
| 256 } | 256 } |
| 257 | 257 |
| 258 #user-images-loading { | 258 #user-images-loading { |
| 259 color: #9c9c9c; | 259 color: #9c9c9c; |
| 260 } | 260 } |
| 261 | 261 |
| OLD | NEW |