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 * This is the stylesheet used by the Out of the box experience (OOBE) flow, | 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow, |
6 * sign in and lock screens. | 6 * sign in and lock screens. |
7 */ | 7 */ |
8 | 8 |
9 html, | 9 html, |
10 body { | 10 body { |
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 html[camera=webrtc] .camera.live.online #take-photo { | 658 html[camera=webrtc] .camera.live.online #take-photo { |
659 background: url('chrome://theme/IDR_USER_IMAGE_CAPTURE') | 659 background: url('chrome://theme/IDR_USER_IMAGE_CAPTURE') |
660 no-repeat center -1px; | 660 no-repeat center -1px; |
661 display: block; | 661 display: block; |
662 } | 662 } |
663 | 663 |
664 #user-image-preview .perspective-box { | 664 #user-image-preview .perspective-box { |
665 -webkit-perspective: 600px; | 665 -webkit-perspective: 600px; |
666 } | 666 } |
667 | 667 |
| 668 #user-image-attribution { |
| 669 /* Turned off for now. */ |
| 670 display: none; |
| 671 } |
| 672 |
668 /* TODO(nkostylev): Remove footer, button-strip styles. */ | 673 /* TODO(nkostylev): Remove footer, button-strip styles. */ |
669 #footer { | 674 #footer { |
670 height: 28px; /* Same as button height */ | 675 height: 28px; /* Same as button height */ |
671 } | 676 } |
672 | 677 |
673 #footer button { | 678 #footer button { |
674 display: none; | 679 display: none; |
675 height: 28px; | 680 height: 28px; |
676 } | 681 } |
677 | 682 |
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1261 width: 100%; | 1266 width: 100%; |
1262 } | 1267 } |
1263 | 1268 |
1264 .background-initial { | 1269 .background-initial { |
1265 opacity: 0; | 1270 opacity: 0; |
1266 } | 1271 } |
1267 | 1272 |
1268 .background-final { | 1273 .background-final { |
1269 opacity: 1; | 1274 opacity: 1; |
1270 } | 1275 } |
OLD | NEW |