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

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

Issue 2956873002: Don't hide profile statistics counters with zero results (Closed)
Patch Set: remove has-no-stats Created 3 years, 5 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 | « ui/login/account_picker/md_user_pod_row.js ('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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 text-align: end; 688 text-align: end;
689 } 689 }
690 690
691 /* Hide dialog elements not in a correct category. Only combinations currently 691 /* Hide dialog elements not in a correct category. Only combinations currently
692 in use are included here. */ 692 in use are included here. */
693 .pod.legacy-supervised .non-sync, 693 .pod.legacy-supervised .non-sync,
694 .pod.legacy-supervised .action-box-remove-user-warning-text, 694 .pod.legacy-supervised .action-box-remove-user-warning-text,
695 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text, 695 .pod.legacy-supervised .action-box-remove-non-owner-user-warning-text,
696 .pod:not(.legacy-supervised) 696 .pod:not(.legacy-supervised)
697 .action-box-remove-legacy-supervised-user-warning-text, 697 .action-box-remove-legacy-supervised-user-warning-text,
698 .pod.synced .non-sync, 698 .pod.synced .non-sync {
699 .pod.has-no-stats .has-stats {
700 display: none; 699 display: none;
701 } 700 }
702 701
703 .user-type-bubble { 702 .user-type-bubble {
704 background-color: white; 703 background-color: white;
705 border: 1px solid lightgray; 704 border: 1px solid lightgray;
706 border-radius: 2px; 705 border-radius: 2px;
707 left: 5px; 706 left: 5px;
708 opacity: 0; 707 opacity: 0;
709 padding: 17px; 708 padding: 17px;
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 animation: ellipsis-component2 1.5s infinite; 1014 animation: ellipsis-component2 1.5s infinite;
1016 } 1015 }
1017 1016
1018 @keyframes ellipsis-component2 { 1017 @keyframes ellipsis-component2 {
1019 0% { opacity: 0; } 1018 0% { opacity: 0; }
1020 25% { opacity: 0; } 1019 25% { opacity: 0; }
1021 50% { opacity: 0; } 1020 50% { opacity: 0; }
1022 75% { opacity: 1; } 1021 75% { opacity: 1; }
1023 100% { opacity: 0; } 1022 100% { opacity: 0; }
1024 } 1023 }
OLDNEW
« no previous file with comments | « ui/login/account_picker/md_user_pod_row.js ('k') | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698