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

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

Issue 22914008: Refactor kiosk app launch to be part of login screen UI flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor style fixes Created 7 years, 4 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
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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: 600px; 9 -webkit-perspective: 600px;
10 bottom: 48px; /* Leave space for the header bar */ 10 bottom: 48px; /* Leave space for the header bar */
11 display: -webkit-box; 11 display: -webkit-box;
12 left: 0; 12 left: 0;
13 position: absolute; 13 position: absolute;
14 right: 0; 14 right: 0;
15 top: 0; 15 top: 0;
16 } 16 }
17 17
18 #outer-container.fullscreen,
19 #outer-container.fullscreen #oobe,
20 #outer-container.fullscreen #oobe #inner-container {
21 height: 100%;
22 width: 100%;
23 }
24
18 #inner-container { 25 #inner-container {
19 border-radius: 2px; 26 border-radius: 2px;
20 padding: 0; 27 padding: 0;
21 position: relative; 28 position: relative;
22 } 29 }
23 30
24 #inner-container.animation { 31 #inner-container.animation {
25 overflow: hidden; 32 overflow: hidden;
26 } 33 }
27 34
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 text-transform: lowercase; 157 text-transform: lowercase;
151 width: 20em; 158 width: 20em;
152 } 159 }
153 160
154 .header-section::before { 161 .header-section::before {
155 /* Divider in header between product name and title, 162 /* Divider in header between product name and title,
156 * like "[Product name] > [step header]". */ 163 * like "[Product name] > [step header]". */
157 content: '\00A0\203A\00A0\00A0'; 164 content: '\00A0\203A\00A0\00A0';
158 } 165 }
159 166
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698