| 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 border: 0; | 559 border: 0; |
| 560 color: #666; | 560 color: #666; |
| 561 cursor: pointer; | 561 cursor: pointer; |
| 562 height: 24px; | 562 height: 24px; |
| 563 margin: 0; | 563 margin: 0; |
| 564 min-width: 0; | 564 min-width: 0; |
| 565 padding: 0; | 565 padding: 0; |
| 566 vertical-align: middle; | 566 vertical-align: middle; |
| 567 } | 567 } |
| 568 | 568 |
| 569 .divider-vert { | 569 .header-bar-item { |
| 570 background: url('chrome://theme/IDR_DIVIDER_VERT') center center no-repeat; | 570 -webkit-padding-start: 15px; |
| 571 background-image: url('chrome://theme/IDR_DIVIDER_VERT'); |
| 572 background-position: left center; |
| 573 background-repeat: no-repeat; |
| 571 display: inline-block; | 574 display: inline-block; |
| 572 height: 24px; | 575 height: 24px; |
| 573 vertical-align: middle; | |
| 574 width: 15px; | |
| 575 } | 576 } |
| 576 | 577 |
| 577 #login-header-bar #shutdown-button { | 578 #login-header-bar #shutdown-button { |
| 578 -webkit-padding-start: 24px; | 579 -webkit-padding-start: 24px; |
| 579 background-image: url('chrome://theme/IDR_ICON_POWER20'); | 580 background-image: url('chrome://theme/IDR_ICON_POWER20'); |
| 580 background-position: left center; | 581 background-position: left center; |
| 581 background-repeat: no-repeat; | 582 background-repeat: no-repeat; |
| 582 } | 583 } |
| 583 | 584 |
| 584 #login-header-bar #add-user-button { | 585 #login-header-bar #add-user-button { |
| 585 -webkit-padding-start: 24px; | 586 -webkit-padding-start: 24px; |
| 586 background-image: url('chrome://theme/IDR_ICON_ADD_USER20'); | 587 background-image: url('chrome://theme/IDR_ICON_ADD_USER20'); |
| 587 background-position: left center; | 588 background-position: left center; |
| 588 background-repeat: no-repeat; | 589 background-repeat: no-repeat; |
| 589 } | 590 } |
| 590 | 591 |
| 592 html[dir=rtl] .header-bar-item, |
| 591 html[dir=rtl] #shutdown-button, | 593 html[dir=rtl] #shutdown-button, |
| 592 html[dir=rtl] #add-user-button { | 594 html[dir=rtl] #add-user-button { |
| 593 background-position: right center; | 595 background-position: right center; |
| 594 } | 596 } |
| 595 | 597 |
| 596 body.login-display { | 598 body.login-display { |
| 597 margin: 0; | 599 margin: 0; |
| 598 padding: 0; | 600 padding: 0; |
| 599 } | 601 } |
| 600 | 602 |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 } | 761 } |
| 760 | 762 |
| 761 .dropdown-overlay { | 763 .dropdown-overlay { |
| 762 bottom: 0; | 764 bottom: 0; |
| 763 left: 0; | 765 left: 0; |
| 764 position: fixed; | 766 position: fixed; |
| 765 right: 0; | 767 right: 0; |
| 766 top: 0; | 768 top: 0; |
| 767 z-index: 5; | 769 z-index: 5; |
| 768 } | 770 } |
| OLD | NEW |