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

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

Issue 296113007: Webkit-box-pack css properties switched to justify-content for oobe screens. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrong-hwid screen fixed. Created 6 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 #password-changed { 6 #password-changed {
7 height: 570px; 7 height: 570px;
8 /* Screen has no controls but has padding at the last text message */ 8 /* Screen has no controls but has padding at the last text message */
9 padding: 70px 17px 50px; 9 padding: 70px 17px 50px;
10 width: 485px; 10 width: 485px;
11 } 11 }
12 12
13 #password-changed-contents { 13 #password-changed-contents {
14 color: #606060; 14 color: #606060;
15 margin: 20px 60px; 15 margin: 20px 60px;
16 } 16 }
17 17
18 #oobe.password-changed .step-controls { 18 #oobe.password-changed .step-controls {
19 -webkit-box-pack: start;
20 -webkit-margin-start: 60px; 19 -webkit-margin-start: 60px;
20 justify-content: flex-start;
21 } 21 }
22 22
23 #password-changed-title { 23 #password-changed-title {
24 font-weight: bold; 24 font-weight: bold;
25 } 25 }
26 26
27 #password-changed-description, 27 #password-changed-description,
28 #password-changed-more-info { 28 #password-changed-more-info {
29 margin-top: 25px; 29 margin-top: 25px;
30 } 30 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 #old-password-error { 81 #old-password-error {
82 color: red; 82 color: red;
83 display: none; 83 display: none;
84 font-size: 12px; 84 font-size: 12px;
85 margin-top: 10px; 85 margin-top: 10px;
86 } 86 }
87 87
88 #password-changed.migrate.password-error #old-password-error { 88 #password-changed.migrate.password-error #old-password-error {
89 display: block; 89 display: block;
90 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698