Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 | 5 |
| 6 /* Overrides for the desktop user manager screen. */ | 6 /* Overrides for the desktop user manager screen. */ |
| 7 | 7 |
| 8 .oobe-display { | 8 .oobe-display { |
| 9 background-color: #eee; | 9 background-color: #eee; |
| 10 } | 10 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 51 | 51 |
| 52 html[dir=rtl] .user-image-pane { | 52 html[dir=rtl] .user-image-pane { |
| 53 right: 0; | 53 right: 0; |
| 54 } | 54 } |
| 55 | 55 |
| 56 .pod .name { | 56 .pod .name { |
| 57 margin-top: 12px; | 57 margin-top: 12px; |
| 58 } | 58 } |
| 59 | 59 |
| 60 .pod .user-image { | 60 .pod .user-image { |
| 61 max-height: 180px; | 61 height: 180px; |
| 62 max-width: 180px; | 62 max-height: initial; |
| 63 max-width: initial; | |
|
Evan Stade
2014/07/16 23:26:24
is there some other rule setting this somewhere? w
bartfab (slow)
2014/07/16 23:53:57
It's inherited from the CSS for Chrome OS pods, wh
Evan Stade
2014/07/17 01:00:08
I think it's a little dangerous to include css fro
| |
| 64 width: 180px | |
|
Evan Stade
2014/07/16 23:26:24
;
bartfab (slow)
2014/07/21 18:27:44
Done.
| |
| 63 opacity: 1; | 65 opacity: 1; |
| 64 } | 66 } |
| 65 | 67 |
| 66 .pod input[type='password'] { | 68 .pod input[type='password'] { |
| 67 height: 45px; /* 1px shorter as to not overlap the pod's rounded corners */ | 69 height: 45px; /* 1px shorter as to not overlap the pod's rounded corners */ |
| 68 top: 1px; | 70 top: 1px; |
| 69 } | 71 } |
| 70 | 72 |
| 71 .pod.locked .locked-indicator { | 73 .pod.locked .locked-indicator { |
| 72 background-image: -webkit-image-set( | 74 background-image: -webkit-image-set( |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 152 margin: 0; | 154 margin: 0; |
| 153 position: absolute; | 155 position: absolute; |
| 154 top: 9px; | 156 top: 9px; |
| 155 width: 0; | 157 width: 0; |
| 156 } | 158 } |
| 157 | 159 |
| 158 .action-box-button:hover, | 160 .action-box-button:hover, |
| 159 .action-box-area.active .action-box-button { | 161 .action-box-area.active .action-box-button { |
| 160 border-top: 6px solid #4c4c4c; | 162 border-top: 6px solid #4c4c4c; |
| 161 } | 163 } |
| OLD | NEW |