OLD | NEW |
---|---|
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
330 | 330 |
331 .default-image #user-image-preview-img { | 331 .default-image #user-image-preview-img { |
332 border: solid 1px #cacaca; | 332 border: solid 1px #cacaca; |
333 background: white; | 333 background: white; |
334 } | 334 } |
335 | 335 |
336 #user-image-preview-caption { | 336 #user-image-preview-caption { |
337 color: dimGray; | 337 color: dimGray; |
338 font-size: smaller; | 338 font-size: smaller; |
339 margin: 8px 4px; | 339 margin: 8px 4px; |
340 overflow: hidden; | |
Nikita (slow)
2011/12/28 14:49:42
How many lines could fit in there now? 2 or 3?
Ivan Korotkov
2011/12/28 15:31:56
2. It doesn't look neatly enough IMO, so I'd sugge
Nikita (slow)
2011/12/28 18:44:43
Please mention that in message description. You co
| |
341 text-overflow: ellipsis; | |
342 white-space: nowrap; | |
343 } | 340 } |
344 | 341 |
345 #footer { | 342 #footer { |
346 height: 28px; /* Same as button height */ | 343 height: 28px; /* Same as button height */ |
347 } | 344 } |
348 | 345 |
349 #footer button { | 346 #footer button { |
350 display: none; | 347 display: none; |
351 height: 28px; | 348 height: 28px; |
352 } | 349 } |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
729 left: 10px; | 726 left: 10px; |
730 opacity: 1.0; | 727 opacity: 1.0; |
731 position: absolute; | 728 position: absolute; |
732 right: 10px; | 729 right: 10px; |
733 text-shadow: 0 1px 1px #fff; | 730 text-shadow: 0 1px 1px #fff; |
734 } | 731 } |
735 | 732 |
736 #offline-network-control { | 733 #offline-network-control { |
737 margin-left: 60px; | 734 margin-left: 60px; |
738 } | 735 } |
OLD | NEW |