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

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: 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 */
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 body:not(.oobe-display) #inner-container { 127 body:not(.oobe-display) #inner-container {
128 height: 262px; 128 height: 262px;
129 padding: 0; 129 padding: 0;
130 width: 1100px; 130 width: 1100px;
131 } 131 }
132 132
133 body:not(.oobe-display) #progress-dots { 133 body:not(.oobe-display) #progress-dots {
134 display: none; 134 display: none;
135 } 135 }
136 136
137 #outer-container.fullscreen,
138 #outer-container.fullscreen #oobe,
139 #outer-container.fullscreen #oobe #inner-container {
140 height: 100%;
141 width: 100%;
142 }
143
137 html[build=chrome] #header-sections { 144 html[build=chrome] #header-sections {
138 -webkit-margin-start: -48px; 145 -webkit-margin-start: -48px;
139 } 146 }
140 147
141 html[build=chromium] #header-sections { 148 html[build=chromium] #header-sections {
142 -webkit-margin-start: 5px; 149 -webkit-margin-start: 5px;
143 } 150 }
144 151
145 .header-section { 152 .header-section {
146 color: rgb(119, 120, 123); /* Should matching text color of the logo. */ 153 color: rgb(119, 120, 123); /* Should matching text color of the logo. */
147 display: none; 154 display: none;
148 font-size: 23px; 155 font-size: 23px;
149 line-height: 31px; 156 line-height: 31px;
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