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

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: Seventh draft Created 5 years, 4 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 background-color: #f3f3f3; 537 background-color: #f3f3f3;
538 } 538 }
539 539
540 .action-box-remove-user-warning { 540 .action-box-remove-user-warning {
541 border-top: 1px solid lightgray; 541 border-top: 1px solid lightgray;
542 font-size: 12px; 542 font-size: 12px;
543 line-height: 18px; 543 line-height: 18px;
544 padding: 20px; 544 padding: 20px;
545 } 545 }
546 546
547 .action-box-remove-user-warning-text, 547 .action-box-remove-user-warning > div,
548 .action-box-remove-legacy-supervised-user-warning-text { 548 .action-box-remove-user-warning > table {
549 padding-bottom: 20px; 549 padding-bottom: 20px;
550 } 550 }
551 551
552 .total-count {
553 font-weight: bold;
554 }
555
556 .action-box-remove-user-warning-table-nonsync {
557 border-spacing: 0;
558 width: 100%;
559 }
560
561 .action-box-remove-user-warning-table td {
562 padding: 0;
563 }
564
565 .action-box-remove-user-warning-table-numbers {
566 color: #757575;
567 text-align: end;
568 }
569
552 .action-box-remove-user-warning .remove-warning-button { 570 .action-box-remove-user-warning .remove-warning-button {
553 width: 100%; 571 width: 100%;
554 } 572 }
555 573
574 /* Hide dialogs not in correct category */
Dmitry Polukhin 2015/08/13 15:34:17 I would prefer to show it when it is need instead
lwchkg 2015/08/17 17:36:32 I'd also like to do it, but it mean we need to hid
Dmitry Polukhin 2015/08/18 10:25:50 Not sure that I understand the problem. You can ad
lwchkg 2015/08/21 17:36:44 Just confirmed that (visibility: hidden; position:
575 .pod.legacy-supervised .sync,
576 .pod.legacy-supervised .non-sync,
577 .pod:not(.legacy-supervised)
578 .action-box-remove-legacy-supervised-user-warning-text,
579 .pod.synced .non-sync,
580 .pod:not(.synced) .sync,
581 .pod.has-no-stats .has-stats,
582 .pod:not(.has-no-stats) .has-no-stats {
583 display: none;
584 }
585
556 .user-type-bubble { 586 .user-type-bubble {
557 background-color: white; 587 background-color: white;
558 border: 1px solid lightgray; 588 border: 1px solid lightgray;
559 border-radius: 2px; 589 border-radius: 2px;
560 left: 5px; 590 left: 5px;
561 opacity: 0; 591 opacity: 0;
562 padding: 17px; 592 padding: 17px;
563 position: absolute; 593 position: absolute;
564 top: 20px; 594 top: 20px;
565 transition: all 100ms; 595 transition: all 100ms;
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 -webkit-animation: ellipsis-component2 1.5s infinite; 812 -webkit-animation: ellipsis-component2 1.5s infinite;
783 } 813 }
784 814
785 @-webkit-keyframes ellipsis-component2 { 815 @-webkit-keyframes ellipsis-component2 {
786 0% { opacity: 0; } 816 0% { opacity: 0; }
787 25% { opacity: 0; } 817 25% { opacity: 0; }
788 50% { opacity: 0; } 818 50% { opacity: 0; }
789 75% { opacity: 1; } 819 75% { opacity: 1; }
790 100% { opacity: 0; } 820 100% { opacity: 0; }
791 } 821 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698