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

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 and fix for remove button 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 background: rgb(197,57,41);
Dan Beam 2016/04/19 03:44:06 nit: spaces between commas
Moe 2016/04/19 15:20:08 Done.
585 border-radius: 2px;
586 color: white;
587 line-height: 32px;
588 min-width: 72px;
589 padding: 0 16px;
590 }
591
592 .action-box-remove-user-warning .remove-warning-button.keyboard-focus {
593 font-weight: normal;
575 } 594 }
576 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 {
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698