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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 .user-image-container { | 76 .user-image-container { |
| 77 align-items: center; | 77 align-items: center; |
| 78 display: flex; | 78 display: flex; |
| 79 height: 100%; | 79 height: 100%; |
| 80 justify-content: center; | 80 justify-content: center; |
| 81 width: 100%; | 81 width: 100%; |
| 82 } | 82 } |
| 83 | 83 |
| 84 .pod .user-image { | 84 .pod .user-image { |
| 85 flex: none; | 85 flex: none; |
| 86 } | |
| 87 | |
| 88 html:not([screen=login-add-user]) .pod .user-image { | |
|
Evan Stade
2014/07/25 18:47:50
could you add a TODO/file a bug for this?
bartfab (slow)
2014/07/25 19:16:15
Done.
| |
| 86 max-height: 160px; | 89 max-height: 160px; |
| 87 max-width: 160px; | 90 max-width: 160px; |
| 88 opacity: 0.7; | 91 opacity: 0.7; |
| 89 } | 92 } |
| 90 | 93 |
| 91 .pod.focused .user-image { | 94 html:not([screen=login-add-user]) .pod.focused .user-image { |
| 92 opacity: 1; | 95 opacity: 1; |
| 93 } | 96 } |
| 94 | 97 |
| 95 .pod.multiprofiles-policy-applied .user-image { | 98 .pod.multiprofiles-policy-applied .user-image { |
| 96 -webkit-filter: grayscale(100%); | 99 -webkit-filter: grayscale(100%); |
| 97 } | 100 } |
| 98 | 101 |
| 99 .signed-in-indicator { | 102 .signed-in-indicator { |
| 100 display: none; | 103 display: none; |
| 101 } | 104 } |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 570 top: 4px; | 573 top: 4px; |
| 571 } | 574 } |
| 572 | 575 |
| 573 .pod.public-account.expanded.advanced .language-and-input-container { | 576 .pod.public-account.expanded.advanced .language-and-input-container { |
| 574 display: none; | 577 display: none; |
| 575 } | 578 } |
| 576 | 579 |
| 577 .enter-button { | 580 .enter-button { |
| 578 font-size: 14px; | 581 font-size: 14px; |
| 579 } | 582 } |
| OLD | NEW |