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

Side by Side Diff: ui/login/screen_container.css

Issue 2785003002: cros: Showing pin on lock is no longer associated with sending user list. (Closed)
Patch Set: Address comments Created 3 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
« no previous file with comments | « ui/login/account_picker/user_pod_row.js ('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 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 5
6 #outer-container { 6 #outer-container {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-pack: center; 8 -webkit-box-pack: center;
9 bottom: 57px; /* Leave space for the header bar */ 9 bottom: 57px; /* Leave space for the header bar */
10 display: -webkit-box; 10 display: -webkit-box;
(...skipping 17 matching lines...) Expand all
28 visibility: visible; 28 visibility: visible;
29 } 29 }
30 30
31 .pin-container.pin-disabled { 31 .pin-container.pin-disabled {
32 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */ 32 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */
33 transition: none; 33 transition: none;
34 visibility: hidden; /* Needed because pin-keyboard's offsetHeight is 34 visibility: hidden; /* Needed because pin-keyboard's offsetHeight is
35 checked to determine if loaded. */ 35 checked to determine if loaded. */
36 } 36 }
37 37
38 .disable-pin-animation .pin-container {
39 transition: none;
40 }
41
42 #scroll-container { 38 #scroll-container {
43 bottom: 0; /* Allows content overlap with control bar. */ 39 bottom: 0; /* Allows content overlap with control bar. */
44 left: 0; 40 left: 0;
45 overflow-x: hidden; 41 overflow-x: hidden;
46 overflow-y: auto; 42 overflow-y: auto;
47 position: absolute; 43 position: absolute;
48 right: 0; 44 right: 0;
49 top: 0; 45 top: 0;
50 } 46 }
51 47
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 line-height: 31px; 249 line-height: 31px;
254 text-transform: lowercase; 250 text-transform: lowercase;
255 width: 23em; 251 width: 23em;
256 } 252 }
257 253
258 .header-section::before { 254 .header-section::before {
259 /* Divider in header between product name and title, 255 /* Divider in header between product name and title,
260 * like "[Product name] > [step header]". */ 256 * like "[Product name] > [step header]". */
261 content: '\00A0\203A\00A0\00A0'; 257 content: '\00A0\203A\00A0\00A0';
262 } 258 }
OLDNEW
« no previous file with comments | « ui/login/account_picker/user_pod_row.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698