Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: ui/login/account_picker/user_pod_row.css

Issue 1642323004: User Manager MD User Pods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Dan's comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 {
574 width: 100%; 584 border-radius: 2px;
585 color: white;
586 line-height: 32px;
587 min-width: 72px;
588 padding: 0 16px;
589 }
590
591 .action-box-remove-user-warning .remove-warning-button.keyboard-focus {
592 font-weight: normal;
575 } 593 }
576 594
577 /* Hide dialog elements not in a correct category. Only combinations currently 595 /* Hide dialog elements not in a correct category. Only combinations currently
578 in use are included here. */ 596 in use are included here. */
579 .pod.legacy-supervised .non-sync, 597 .pod.legacy-supervised .non-sync,
580 .pod.legacy-supervised .action-box-remove-user-warning-text, 598 .pod.legacy-supervised .action-box-remove-user-warning-text,
581 .pod:not(.legacy-supervised) 599 .pod:not(.legacy-supervised)
582 .action-box-remove-legacy-supervised-user-warning-text, 600 .action-box-remove-legacy-supervised-user-warning-text,
583 .pod.synced .non-sync, 601 .pod.synced .non-sync,
584 .pod.has-no-stats .has-stats { 602 .pod.has-no-stats .has-stats {
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 -webkit-animation: ellipsis-component2 1.5s infinite; 833 -webkit-animation: ellipsis-component2 1.5s infinite;
816 } 834 }
817 835
818 @-webkit-keyframes ellipsis-component2 { 836 @-webkit-keyframes ellipsis-component2 {
819 0% { opacity: 0; } 837 0% { opacity: 0; }
820 25% { opacity: 0; } 838 25% { opacity: 0; }
821 50% { opacity: 0; } 839 50% { opacity: 0; }
822 75% { opacity: 1; } 840 75% { opacity: 1; }
823 100% { opacity: 0; } 841 100% { opacity: 0; }
824 } 842 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698