Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 419 left: auto; | 419 left: auto; |
| 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 { |
|
Nikita (slow)
2015/02/05 13:23:42
legacySupervised
| |
| 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 Loading... | |
| 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 } |
| OLD | NEW |