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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 display: none; | 152 display: none; |
153 font-size: 14px; | 153 font-size: 14px; |
154 height: 40px; | 154 height: 40px; |
155 text-overflow: ellipsis; | 155 text-overflow: ellipsis; |
156 } | 156 } |
157 | 157 |
158 .pod[auth-type='userClick'] .password-label { | 158 .pod[auth-type='userClick'] .password-label { |
159 display: -webkit-box; | 159 display: -webkit-box; |
160 } | 160 } |
161 | 161 |
162 .custom-button { | 162 .custom-icon { |
163 -webkit-box-align: center; | 163 -webkit-box-align: center; |
164 background-color: rgba(0, 0, 0, 0); | 164 background-position: center; |
165 background-image: none; | 165 background-repeat: no-repeat; |
166 cursor: pointer; | |
167 display: -webkit-box; | |
168 height: 40px; | 166 height: 40px; |
169 margin: 0; | 167 width: 40px; |
170 max-width: 40px; | |
171 min-height: 0; | |
172 min-width: 0; | |
173 padding: 0; | |
174 } | |
175 | |
176 button.custom-button:focus:active, | |
177 button.custom-button:focus:hover { | |
178 border: 1px solid transparent !important; | |
179 } | |
180 | |
181 .custom-button img { | |
182 max-height: 100%; | |
183 max-width: 100%; | |
184 } | 168 } |
185 | 169 |
186 .pod input[type='password'] { | 170 .pod input[type='password'] { |
187 -webkit-transition: opacity linear 150ms; | 171 -webkit-transition: opacity linear 150ms; |
188 background: white; | 172 background: white; |
189 border: none; | 173 border: none; |
190 border-radius: 0; /* override widgets.css rule */ | 174 border-radius: 0; /* override widgets.css rule */ |
191 box-sizing: border-box; | 175 box-sizing: border-box; |
192 display: none; | 176 display: none; |
193 height: 40px; | 177 height: 40px; |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 .pod.public-account.expanded .name, | 588 .pod.public-account.expanded .name, |
605 .pod.public-account.expanded .learn-more { | 589 .pod.public-account.expanded .learn-more { |
606 display: none; | 590 display: none; |
607 } | 591 } |
608 | 592 |
609 .pod.public-account.expanded .side-pane-divider, | 593 .pod.public-account.expanded .side-pane-divider, |
610 .pod.public-account.expanded .side-pane-container, | 594 .pod.public-account.expanded .side-pane-container, |
611 .pod.public-account.animating .side-pane-container { | 595 .pod.public-account.animating .side-pane-container { |
612 visibility: inherit; | 596 visibility: inherit; |
613 } | 597 } |
OLD | NEW |