| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 user pods row of account picker UI. | 5 * This is the stylesheet used by user pods row of account picker UI. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 podrow { | 8 podrow { |
| 9 /* Temporarily disabled because animation interferes with updating screen's | 9 /* Temporarily disabled because animation interferes with updating screen's |
| 10 size. */ | 10 size. */ |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 } | 426 } |
| 427 | 427 |
| 428 .action-box-button:hover { | 428 .action-box-button:hover { |
| 429 background-image: url(chrome://theme/IDR_OOBE_ACTION_BOX_BUTTON_HOVER); | 429 background-image: url(chrome://theme/IDR_OOBE_ACTION_BOX_BUTTON_HOVER); |
| 430 } | 430 } |
| 431 | 431 |
| 432 .action-box-area.active .action-box-button { | 432 .action-box-area.active .action-box-button { |
| 433 background-image: url(chrome://theme/IDR_OOBE_ACTION_BOX_BUTTON_PRESSED); | 433 background-image: url(chrome://theme/IDR_OOBE_ACTION_BOX_BUTTON_PRESSED); |
| 434 } | 434 } |
| 435 | 435 |
| 436 .action-box-area .action-box-icon { |
| 437 /* overriden in chrome/browser/resources/md_user_manager/user_manager.css */ |
| 438 display: none; |
| 439 } |
| 440 |
| 441 .user-image-gradient-area { |
| 442 /* overriden in chrome/browser/resources/md_user_manager/user_manager.css */ |
| 443 display: none; |
| 444 } |
| 445 |
| 436 .user-type-icon-area { | 446 .user-type-icon-area { |
| 437 left: 0; | 447 left: 0; |
| 438 z-index: 5; | 448 z-index: 5; |
| 439 } | 449 } |
| 440 | 450 |
| 441 html[dir=rtl] .user-type-icon-area { | 451 html[dir=rtl] .user-type-icon-area { |
| 442 left: auto; | 452 left: auto; |
| 443 right: 0; | 453 right: 0; |
| 444 } | 454 } |
| 445 | 455 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 .action-box-remove-user-warning-table td { | 574 .action-box-remove-user-warning-table td { |
| 565 padding: 0; | 575 padding: 0; |
| 566 } | 576 } |
| 567 | 577 |
| 568 .action-box-remove-user-warning-table-numbers { | 578 .action-box-remove-user-warning-table-numbers { |
| 569 color: #757575; | 579 color: #757575; |
| 570 text-align: end; | 580 text-align: end; |
| 571 } | 581 } |
| 572 | 582 |
| 573 .action-box-remove-user-warning .remove-warning-button { | 583 .action-box-remove-user-warning .remove-warning-button { |
| 584 background: rgb(197, 57, 41); |
| 585 border-radius: 2px; |
| 586 color: white; |
| 587 line-height: 32px; |
| 588 padding: 0 16px; |
| 574 width: 100%; | 589 width: 100%; |
| 575 } | 590 } |
| 576 | 591 |
| 592 .action-box-remove-user-warning .remove-warning-button.keyboard-focus { |
| 593 font-weight: normal; |
| 594 } |
| 595 |
| 577 /* Hide dialog elements not in a correct category. Only combinations currently | 596 /* Hide dialog elements not in a correct category. Only combinations currently |
| 578 in use are included here. */ | 597 in use are included here. */ |
| 579 .pod.legacy-supervised .non-sync, | 598 .pod.legacy-supervised .non-sync, |
| 580 .pod.legacy-supervised .action-box-remove-user-warning-text, | 599 .pod.legacy-supervised .action-box-remove-user-warning-text, |
| 581 .pod:not(.legacy-supervised) | 600 .pod:not(.legacy-supervised) |
| 582 .action-box-remove-legacy-supervised-user-warning-text, | 601 .action-box-remove-legacy-supervised-user-warning-text, |
| 583 .pod.synced .non-sync, | 602 .pod.synced .non-sync, |
| 584 .pod.has-no-stats .has-stats { | 603 .pod.has-no-stats .has-stats { |
| 585 display: none; | 604 display: none; |
| 586 } | 605 } |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 -webkit-animation: ellipsis-component2 1.5s infinite; | 834 -webkit-animation: ellipsis-component2 1.5s infinite; |
| 816 } | 835 } |
| 817 | 836 |
| 818 @-webkit-keyframes ellipsis-component2 { | 837 @-webkit-keyframes ellipsis-component2 { |
| 819 0% { opacity: 0; } | 838 0% { opacity: 0; } |
| 820 25% { opacity: 0; } | 839 25% { opacity: 0; } |
| 821 50% { opacity: 0; } | 840 50% { opacity: 0; } |
| 822 75% { opacity: 1; } | 841 75% { opacity: 1; } |
| 823 100% { opacity: 0; } | 842 100% { opacity: 0; } |
| 824 } | 843 } |
| OLD | NEW |