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

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

Issue 871373011: Child accounts icons added to Chrome OS notifications. (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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_SUPERVISED_USER_ICON);
431 } 431 }
432 432
433 .user-type-icon-area.child .user-type-icon-image {
434 background-image: url(chrome://theme/IDR_CHILD_USER_ICON);
435 }
436
433 .user-type-icon-area.policy .user-type-icon-image { 437 .user-type-icon-area.policy .user-type-icon-image {
434 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY); 438 background-image: url(chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY);
435 } 439 }
436 440
437 .user-type-icon-area.app .user-type-icon-image { 441 .user-type-icon-area.app .user-type-icon-image {
438 background-image: url(chrome://theme/IDR_KIOSK_APP_USER_POD_ICON); 442 background-image: url(chrome://theme/IDR_KIOSK_APP_USER_POD_ICON);
439 } 443 }
440 444
441 .action-box-menu { 445 .action-box-menu {
442 display: none; 446 display: none;
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 -webkit-animation: ellipsis-component2 1.5s infinite; 759 -webkit-animation: ellipsis-component2 1.5s infinite;
756 } 760 }
757 761
758 @-webkit-keyframes ellipsis-component2 { 762 @-webkit-keyframes ellipsis-component2 {
759 0% { opacity: 0; } 763 0% { opacity: 0; }
760 25% { opacity: 0; } 764 25% { opacity: 0; }
761 50% { opacity: 0; } 765 50% { opacity: 0; }
762 75% { opacity: 1; } 766 75% { opacity: 1; }
763 100% { opacity: 0; } 767 100% { opacity: 0; }
764 } 768 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698