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

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

Issue 898533005: Rename for some supervised users ambiguity. Adding child account icon to the avatar menu bubble. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 right: 0; 420 right: 0;
421 } 421 }
422 422
423 .user-type-icon-image { 423 .user-type-icon-image {
424 height: 16px; 424 height: 16px;
425 margin: 5px; 425 margin: 5px;
426 width: 16px; 426 width: 16px;
427 } 427 }
428 428
429 .user-type-icon-area.supervised .user-type-icon-image { 429 .user-type-icon-area.supervised .user-type-icon-image {
430 background-image: url(chrome://theme/IDR_SUPERVISED_USER_ICON); 430 background-image: url(chrome://theme/IDR_LEGACY_SUPERVISED_USER_ICON);
431 } 431 }
432 432
433 .user-type-icon-area.child .user-type-icon-image { 433 .user-type-icon-area.child .user-type-icon-image {
434 background-image: url(chrome://theme/IDR_CHILD_USER_ICON); 434 background-image: url(chrome://theme/IDR_CHILD_USER_ICON);
435 } 435 }
436 436
437 .user-type-icon-area.policy .user-type-icon-image { 437 .user-type-icon-area.policy .user-type-icon-image {
438 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY); 438 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY);
439 } 439 }
440 440
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 -webkit-animation: ellipsis-component2 1.5s infinite; 759 -webkit-animation: ellipsis-component2 1.5s infinite;
760 } 760 }
761 761
762 @-webkit-keyframes ellipsis-component2 { 762 @-webkit-keyframes ellipsis-component2 {
763 0% { opacity: 0; } 763 0% { opacity: 0; }
764 25% { opacity: 0; } 764 25% { opacity: 0; }
765 50% { opacity: 0; } 765 50% { opacity: 0; }
766 75% { opacity: 1; } 766 75% { opacity: 1; }
767 100% { opacity: 0; } 767 100% { opacity: 0; }
768 } 768 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698