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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
742 left: 10px; | 742 left: 10px; |
743 opacity: 1.0; | 743 opacity: 1.0; |
744 position: absolute; | 744 position: absolute; |
745 right: 10px; | 745 right: 10px; |
746 text-shadow: 0 1px 1px #fff; | 746 text-shadow: 0 1px 1px #fff; |
747 } | 747 } |
748 | 748 |
749 #offline-network-control { | 749 #offline-network-control { |
750 margin-left: 60px; | 750 margin-left: 60px; |
751 } | 751 } |
752 | |
753 #notification-area { | |
754 color: #666; | |
755 height: 0; | |
James Hawkins
2012/03/15 17:12:14
height 0?
Patrick Dubroy
2012/03/15 17:16:31
Otherwise the size of the notification area would
James Hawkins
2012/03/15 17:27:34
Can we use position absolute or fixed instead?
| |
756 margin: 8px auto; | |
757 max-width: 850px; | |
758 text-align: center; | |
759 } | |
760 | |
761 #notification-area a { | |
762 color: rgb(37, 79, 155); | |
763 } | |
OLD | NEW |