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

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

Issue 1248613003: Issue 501916 : Add data type counts to profile deletion flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Respond to achuithb's comment Created 5 years, 2 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 background-color: #f3f3f3; 540 background-color: #f3f3f3;
541 } 541 }
542 542
543 .action-box-remove-user-warning { 543 .action-box-remove-user-warning {
544 border-top: 1px solid lightgray; 544 border-top: 1px solid lightgray;
545 font-size: 12px; 545 font-size: 12px;
546 line-height: 18px; 546 line-height: 18px;
547 padding: 20px; 547 padding: 20px;
548 } 548 }
549 549
550 .action-box-remove-user-warning-text, 550 .action-box-remove-user-warning > div,
551 .action-box-remove-legacy-supervised-user-warning-text { 551 .action-box-remove-user-warning > table {
552 padding-bottom: 20px; 552 padding-bottom: 20px;
553 } 553 }
554 554
555 .total-count {
556 font-weight: bold;
557 }
558
559 .action-box-remove-user-warning-table-nonsync {
560 border-spacing: 0;
561 width: 100%;
562 }
563
564 .action-box-remove-user-warning-table td {
565 padding: 0;
566 }
567
568 .action-box-remove-user-warning-table-numbers {
569 color: #757575;
570 text-align: end;
571 }
572
555 .action-box-remove-user-warning .remove-warning-button { 573 .action-box-remove-user-warning .remove-warning-button {
556 width: 100%; 574 width: 100%;
557 } 575 }
558 576
577 /* Hide dialog elements not in a correct category. Only combinations currently
578 in use are included here. */
579 .pod.legacy-supervised .non-sync,
580 .pod.legacy-supervised .action-box-remove-user-warning-text,
581 .pod:not(.legacy-supervised)
582 .action-box-remove-legacy-supervised-user-warning-text,
583 .pod.synced .non-sync,
584 .pod.has-no-stats .has-stats {
585 display: none;
586 }
587
559 .user-type-bubble { 588 .user-type-bubble {
560 background-color: white; 589 background-color: white;
561 border: 1px solid lightgray; 590 border: 1px solid lightgray;
562 border-radius: 2px; 591 border-radius: 2px;
563 left: 5px; 592 left: 5px;
564 opacity: 0; 593 opacity: 0;
565 padding: 17px; 594 padding: 17px;
566 position: absolute; 595 position: absolute;
567 top: 20px; 596 top: 20px;
568 transition: all 100ms; 597 transition: all 100ms;
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 -webkit-animation: ellipsis-component2 1.5s infinite; 814 -webkit-animation: ellipsis-component2 1.5s infinite;
786 } 815 }
787 816
788 @-webkit-keyframes ellipsis-component2 { 817 @-webkit-keyframes ellipsis-component2 {
789 0% { opacity: 0; } 818 0% { opacity: 0; }
790 25% { opacity: 0; } 819 25% { opacity: 0; }
791 50% { opacity: 0; } 820 50% { opacity: 0; }
792 75% { opacity: 1; } 821 75% { opacity: 1; }
793 100% { opacity: 0; } 822 100% { opacity: 0; }
794 } 823 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698