| 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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 body.login-display #progress { | 637 body.login-display #progress { |
| 638 visibility: hidden; | 638 visibility: hidden; |
| 639 } | 639 } |
| 640 | 640 |
| 641 .dropdown-title { | 641 .dropdown-title { |
| 642 -webkit-border-radius: 2px; | 642 -webkit-border-radius: 2px; |
| 643 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | 643 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); |
| 644 -webkit-padding-end: 20px; | 644 -webkit-padding-end: 20px; |
| 645 -webkit-padding-start: 2px; | 645 -webkit-padding-start: 2px; |
| 646 -webkit-user-select: none; | 646 -webkit-user-select: none; |
| 647 -webkit-box-align: start; |
| 647 background-image: url('../../shared/images/select.png'), | 648 background-image: url('../../shared/images/select.png'), |
| 648 -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | 649 -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); |
| 649 background-position: center right; | 650 background-position: center right; |
| 650 background-repeat: no-repeat; | 651 background-repeat: no-repeat; |
| 651 border: 1px solid #aaa; | 652 border: 1px solid #aaa; |
| 652 color: #555; | 653 color: #555; |
| 654 display: -webkit-box; |
| 653 font-size: inherit; | 655 font-size: inherit; |
| 654 height: 24px; | 656 height: 20px; |
| 655 margin: 0; | 657 margin: 0; |
| 656 overflow: hidden; | 658 overflow: hidden; |
| 657 padding-top: 2px; | 659 padding-top: 1px; |
| 658 padding-bottom: 2px; | 660 padding-bottom: 1px; |
| 659 text-overflow: ellipsis; | 661 text-overflow: ellipsis; |
| 660 text-align: left; | 662 text-align: left; |
| 661 text-indent: 4px; | 663 text-indent: 4px; |
| 662 white-space: nowrap; | 664 white-space: nowrap; |
| 663 width: 250px; | |
| 664 z-index: 10; | 665 z-index: 10; |
| 665 } | 666 } |
| 666 | 667 |
| 667 .dropdown-title:hover { | 668 .dropdown-title:hover { |
| 668 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); | 669 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); |
| 669 background-image: url('../../shared/images/select.png'), | 670 background-image: url('../../shared/images/select.png'), |
| 670 -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9); | 671 -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9); |
| 671 color: #333; | 672 color: #333; |
| 672 background-position: center right; | 673 background-position: center right; |
| 673 background-repeat: no-repeat; | 674 background-repeat: no-repeat; |
| 674 } | 675 } |
| 675 | 676 |
| 676 .dropdown-title:active { | 677 .dropdown-title img { |
| 677 -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); | 678 height: 20px; |
| 678 background-image: url('../../shared/images/select.png'), | 679 maring-top: -1px; |
| 679 -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); | 680 } |
| 680 color: #444; | 681 |
| 682 .dropdown-title div { |
| 683 margin-top: 1px; |
| 681 } | 684 } |
| 682 | 685 |
| 683 .dropdown-container { | 686 .dropdown-container { |
| 684 background: #f7f7f7; | 687 background: #f7f7f7; |
| 685 border: 1px solid #7c91bf; | 688 border: 1px solid #7c91bf; |
| 686 padding-bottom: 2px; | 689 padding-bottom: 2px; |
| 687 padding-top: 2px; | 690 padding-top: 2px; |
| 688 position: relative; | 691 position: relative; |
| 689 top: 100%; | 692 top: 100%; |
| 690 width: 248px; | 693 width: 248px; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 } | 762 } |
| 760 | 763 |
| 761 .dropdown-overlay { | 764 .dropdown-overlay { |
| 762 bottom: 0; | 765 bottom: 0; |
| 763 left: 0; | 766 left: 0; |
| 764 position: fixed; | 767 position: fixed; |
| 765 right: 0; | 768 right: 0; |
| 766 top: 0; | 769 top: 0; |
| 767 z-index: 5; | 770 z-index: 5; |
| 768 } | 771 } |
| OLD | NEW |