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

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

Issue 2027683003: Pin keyboard moved to under the user profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Rebased. Created 4 years, 5 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
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 -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */ 9 -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */
10 bottom: 57px; /* Leave space for the header bar */ 10 bottom: 57px; /* Leave space for the header bar */
11 display: -webkit-box; 11 display: -webkit-box;
12 left: 0; 12 left: 0;
13 min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */ 13 min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */
14 position: absolute; 14 position: absolute;
15 right: 0; 15 right: 0;
16 top: 0; 16 top: 0;
17 z-index: 1; 17 z-index: 1;
18 } 18 }
19 19
20 .oobe-display #outer-container { 20 .oobe-display #outer-container {
21 -webkit-perspective: 600px; 21 -webkit-perspective: 600px;
22 } 22 }
23 23
24 #pin-container { 24 .pin-container.pin-enabled {
25 opacity: 1;
26 transition: opacity 200ms ease-in-out 500ms,
27 visibility 200ms ease-in-out 500ms;
28 visibility: visible;
29 }
30
31 .pin-container.pin-disabled {
25 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. */
26 transition: opacity 200ms ease-in-out; 33 transition: none;
34 visibility: hidden;
27 } 35 }
28 36
29 #scroll-container { 37 #scroll-container {
30 bottom: 0; /* Allows content overlap with control bar. */ 38 bottom: 0; /* Allows content overlap with control bar. */
31 left: 0; 39 left: 0;
32 overflow-x: hidden; 40 overflow-x: hidden;
33 overflow-y: auto; 41 overflow-y: auto;
34 position: absolute; 42 position: absolute;
35 right: 0; 43 right: 0;
36 top: 0; 44 top: 0;
37 } 45 }
38 46
39 #scroll-container::-webkit-scrollbar { 47 #scroll-container::-webkit-scrollbar {
40 display: none; 48 display: none;
41 } 49 }
42 50
43 #inner-container { 51 #inner-container {
44 border-radius: 2px; 52 border-radius: 2px;
45 padding: 0;
46 position: relative; 53 position: relative;
47 } 54 }
48 55
49 #inner-container.animation { 56 #inner-container.animation {
50 overflow: hidden; 57 overflow: hidden;
51 } 58 }
52 59
53 #inner-container.disabled { 60 #inner-container.disabled {
54 opacity: 0.4; 61 opacity: 0.4;
55 pointer-events: none; 62 pointer-events: none;
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 line-height: 31px; 219 line-height: 31px;
213 text-transform: lowercase; 220 text-transform: lowercase;
214 width: 23em; 221 width: 23em;
215 } 222 }
216 223
217 .header-section::before { 224 .header-section::before {
218 /* Divider in header between product name and title, 225 /* Divider in header between product name and title,
219 * like "[Product name] > [step header]". */ 226 * like "[Product name] > [step header]". */
220 content: '\00A0\203A\00A0\00A0'; 227 content: '\00A0\203A\00A0\00A0';
221 } 228 }
OLDNEW
« ui/login/account_picker/user_pod_row.js ('K') | « ui/login/resource_loader.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698