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 */ | 6 */ |
7 | 7 |
8 html, | 8 html, |
9 body { | 9 body { |
10 height: 100%; | 10 height: 100%; |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
743 left: 10px; | 743 left: 10px; |
744 opacity: 1.0; | 744 opacity: 1.0; |
745 position: absolute; | 745 position: absolute; |
746 right: 10px; | 746 right: 10px; |
747 text-shadow: 0 1px 1px #fff; | 747 text-shadow: 0 1px 1px #fff; |
748 } | 748 } |
749 | 749 |
750 #offline-network-control { | 750 #offline-network-control { |
751 margin-left: 60px; | 751 margin-left: 60px; |
752 } | 752 } |
753 | |
754 #notification-area { | |
Nikita (slow)
2012/02/23 14:58:51
Width should be limited as in current implementati
Patrick Dubroy
2012/02/28 00:51:02
Done.
Nikita (slow)
2012/02/28 09:45:33
Could you please provide a screen shot how it look
| |
755 color: #666; | |
756 height: 0; | |
757 margin-top: 8px; | |
758 text-align: center; | |
759 } | |
760 | |
761 #notification-area a { | |
762 color: #254f9b; | |
763 } | |
764 | |
765 #enterprise-info-container { | |
766 visibility: hidden; | |
767 } | |
OLD | NEW |