| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 height: 40px; | 167 height: 40px; |
| 168 outline: none; | 168 outline: none; |
| 169 padding: 4px 6px; | 169 padding: 4px 6px; |
| 170 width: 100%; | 170 width: 100%; |
| 171 } | 171 } |
| 172 | 172 |
| 173 .pod.need-password.focused .password-area { | 173 .pod.need-password.focused .password-area { |
| 174 display: -webkit-box; | 174 display: -webkit-box; |
| 175 } | 175 } |
| 176 | 176 |
| 177 .pod .signin-button { | 177 .pod .signin-button, |
| 178 .pod .launch-app-button { |
| 178 box-sizing: border-box; | 179 box-sizing: border-box; |
| 179 display: inline-block; | 180 display: inline-block; |
| 180 height: 26px; | 181 height: 26px; |
| 181 margin: 6px 0; | 182 margin: 6px 0; |
| 182 max-width: 100%; | 183 max-width: 100%; |
| 183 min-width: 72px !important; | 184 min-width: 72px !important; |
| 184 padding: 4px 8px; | 185 padding: 4px 8px; |
| 185 } | 186 } |
| 186 | 187 |
| 187 .pod:not(.focused) .signin-button { | 188 .pod:not(.focused) .signin-button, |
| 189 .pod:not(.focused) .launch-app-button { |
| 188 display: none; | 190 display: none; |
| 189 } | 191 } |
| 190 | 192 |
| 191 .pod .capslock-hint { | 193 .pod .capslock-hint { |
| 192 bottom: 13px; | 194 bottom: 13px; |
| 193 cursor: text; | 195 cursor: text; |
| 194 position: absolute; | 196 position: absolute; |
| 195 right: 6px; | 197 right: 6px; |
| 196 visibility: hidden; | 198 visibility: hidden; |
| 197 z-index: 1; | 199 z-index: 1; |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 .pod.public-account.expanded .name, | 563 .pod.public-account.expanded .name, |
| 562 .pod.public-account.expanded .learn-more { | 564 .pod.public-account.expanded .learn-more { |
| 563 display: none; | 565 display: none; |
| 564 } | 566 } |
| 565 | 567 |
| 566 .pod.public-account.expanded .side-pane-divider, | 568 .pod.public-account.expanded .side-pane-divider, |
| 567 .pod.public-account.expanded .side-pane-container, | 569 .pod.public-account.expanded .side-pane-container, |
| 568 .pod.public-account.animating .side-pane-container { | 570 .pod.public-account.animating .side-pane-container { |
| 569 visibility: inherit; | 571 visibility: inherit; |
| 570 } | 572 } |
| OLD | NEW |