Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: chrome/browser/resources/chromeos/login/user_pod_row.css

Issue 10200015: [cros] Button focus polishing on the login screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 -webkit-box-align: center; 9 -webkit-box-align: center;
10 -webkit-box-pack: center; 10 -webkit-box-pack: center;
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 } 174 }
175 175
176 .capslock-on .pod.focused input[type='password']:not([hidden]) ~ .capslock-hint { 176 .capslock-on .pod.focused input[type='password']:not([hidden]) ~ .capslock-hint {
177 visibility: visible; 177 visibility: visible;
178 } 178 }
179 179
180 .remove-user-button { 180 .remove-user-button {
181 -webkit-transition: width 100ms ease-in-out, background 200ms ease-in-out; 181 -webkit-transition: width 100ms ease-in-out, background 200ms ease-in-out;
182 background: url('../../../../../ui/resources/close_bar.png') center center no- repeat; 182 background: url('../../../../../ui/resources/close_bar.png') center center no- repeat;
183 background-color: rgba(255, 255, 255, 0.3); 183 background-color: rgba(255, 255, 255, 0.3);
184 border: 0;
185 border-radius: 2px; 184 border-radius: 2px;
186 box-shadow: none; 185 box-shadow: none;
187 height: 16px; 186 height: 16px;
188 margin: 0; 187 margin: 0;
189 min-width: 16px; 188 min-width: 16px;
190 opacity: 0; 189 opacity: 0;
191 padding: 0; 190 padding: 0;
192 position: absolute; 191 position: absolute;
193 right: 14px; 192 right: 14px;
194 top: 14px; 193 top: 14px;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 /* Width of .user-image. */ 232 /* Width of .user-image. */
234 width: 160px; 233 width: 160px;
235 z-index: 1; 234 z-index: 1;
236 } 235 }
237 236
238 .pod.focused .signed-in-indicator { 237 .pod.focused .signed-in-indicator {
239 /* Track shifting of .user-image on pod focus. */ 238 /* Track shifting of .user-image on pod focus. */
240 -webkit-transform: translateY(-1px); 239 -webkit-transform: translateY(-1px);
241 -webkit-transition: -webkit-transform 140ms ease; 240 -webkit-transition: -webkit-transform 140ms ease;
242 } 241 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698