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

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

Issue 2231143002: Cleanup: fix some CSS comment styles (especially copyrights) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: michaelpg@ review Created 4 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
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 * This is the stylesheet used by the Locally managed user creation flow screen. 5 * This is the stylesheet used by the Locally managed user creation flow screen.
6 */ 6 */
7 7
8 #supervised-user-creation { 8 #supervised-user-creation {
9 height: 609px; /* Same size as GAIA sign in screen.*/ 9 height: 609px; /* Same size as GAIA sign in screen.*/
10 padding: 0 0; /* Some screens have elements right next to borders. */ 10 padding: 0 0; /* Some screens have elements right next to borders. */
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 192
193 #supervised-user-creation-managers-pane { 193 #supervised-user-creation-managers-pane {
194 border: 1px solid #c8c8c8; 194 border: 1px solid #c8c8c8;
195 height: 100%; 195 height: 100%;
196 margin-top: 20px; 196 margin-top: 20px;
197 overflow-x: hidden; 197 overflow-x: hidden;
198 overflow-y: auto; 198 overflow-y: auto;
199 } 199 }
200 200
201 /* This class will be set for elements with hide-on-import class by JS when 201 /* This class will be set for elements with hide-on-import class by JS when
202 * page is used in 'import' mode 202 * page is used in 'import' mode. */
203 */
204 #supervised-user-creation .hidden-on-import { 203 #supervised-user-creation .hidden-on-import {
205 display: none; 204 display: none;
206 } 205 }
207 206
208 #supervised-user-creation-error { 207 #supervised-user-creation-error {
209 padding: 175px 120px 0; 208 padding: 175px 120px 0;
210 text-align: center; 209 text-align: center;
211 } 210 }
212 211
213 #supervised-user-creation-error .error-icon { 212 #supervised-user-creation-error .error-icon {
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 } 550 }
552 551
553 #supervised-user-creation-navigation { 552 #supervised-user-creation-navigation {
554 color: rgba(0, 0, 0, .54); 553 color: rgba(0, 0, 0, .54);
555 left: 0; 554 left: 0;
556 position: absolute; 555 position: absolute;
557 right: 0; 556 right: 0;
558 top: 0; 557 top: 0;
559 z-index: 1; 558 z-index: 1;
560 } 559 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698