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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 left: auto; | 419 left: auto; |
420 right: 0; | 420 right: 0; |
421 } | 421 } |
422 | 422 |
423 .user-type-icon-image { | 423 .user-type-icon-image { |
424 height: 16px; | 424 height: 16px; |
425 margin: 5px; | 425 margin: 5px; |
426 width: 16px; | 426 width: 16px; |
427 } | 427 } |
428 | 428 |
429 .user-type-icon-area.supervised .user-type-icon-image { | 429 .user-type-icon-area.legacySupervised .user-type-icon-image { |
430 background-image: url(chrome://theme/IDR_SUPERVISED_USER_ICON); | 430 background-image: url(chrome://theme/IDR_LEGACY_SUPERVISED_USER_ICON); |
431 } | 431 } |
432 | 432 |
433 .user-type-icon-area.child .user-type-icon-image { | 433 .user-type-icon-area.child .user-type-icon-image { |
434 background-image: url(chrome://theme/IDR_CHILD_USER_ICON); | 434 background-image: url(chrome://theme/IDR_CHILD_USER_ICON); |
435 } | 435 } |
436 | 436 |
437 .user-type-icon-area.policy .user-type-icon-image { | 437 .user-type-icon-area.policy .user-type-icon-image { |
438 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY); | 438 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY); |
439 } | 439 } |
440 | 440 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 } | 515 } |
516 | 516 |
517 .action-box-remove-user-warning { | 517 .action-box-remove-user-warning { |
518 border-top: 1px solid lightgray; | 518 border-top: 1px solid lightgray; |
519 font-size: 12px; | 519 font-size: 12px; |
520 line-height: 18px; | 520 line-height: 18px; |
521 padding: 20px; | 521 padding: 20px; |
522 } | 522 } |
523 | 523 |
524 .action-box-remove-user-warning-text, | 524 .action-box-remove-user-warning-text, |
525 .action-box-remove-supervised-user-warning-text { | 525 .action-box-remove-legacy-supervised-user-warning-text { |
526 padding-bottom: 20px; | 526 padding-bottom: 20px; |
527 } | 527 } |
528 | 528 |
529 .action-box-remove-user-warning .remove-warning-button { | 529 .action-box-remove-user-warning .remove-warning-button { |
530 width: 100%; | 530 width: 100%; |
531 } | 531 } |
532 | 532 |
533 .user-type-bubble { | 533 .user-type-bubble { |
534 background-color: white; | 534 background-color: white; |
535 border: 1px solid lightgray; | 535 border: 1px solid lightgray; |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 -webkit-animation: ellipsis-component2 1.5s infinite; | 759 -webkit-animation: ellipsis-component2 1.5s infinite; |
760 } | 760 } |
761 | 761 |
762 @-webkit-keyframes ellipsis-component2 { | 762 @-webkit-keyframes ellipsis-component2 { |
763 0% { opacity: 0; } | 763 0% { opacity: 0; } |
764 25% { opacity: 0; } | 764 25% { opacity: 0; } |
765 50% { opacity: 0; } | 765 50% { opacity: 0; } |
766 75% { opacity: 1; } | 766 75% { opacity: 1; } |
767 100% { opacity: 0; } | 767 100% { opacity: 0; } |
768 } | 768 } |
OLD | NEW |