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

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

Issue 137803008: cros: Update SAML flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: split gaia.css Created 6 years, 10 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 #confirm-password { 6 #confirm-password {
7 height: 200px; 7 height: 609px; /* Should be the same as #gaia-signin. */
8 padding: 70px 17px; 8 padding: 70px;
9 width: 400px; 9 width: 722px; /* Should be the same as #gaia-signin. */
10 }
11
12 #confirm-password .step-contents {
13 -webkit-box-pack: center;
14 display: -webkit-box;
15 height: 100%;
16 }
17
18 #confirm-password-main {
19 height: 100%;
20 width: 310px;
10 } 21 }
11 22
12 #confirm-password-title { 23 #confirm-password-title {
13 font-weight: bold; 24 font-weight: bold;
14 margin: 0;
15 } 25 }
16 26
17 #confirm-password-input { 27 #confirm-password-input-container {
18 margin-top: 10px; 28 margin-bottom: 1em;
19 width: 100%;
20 } 29 }
30
31 #confirm-password-error {
32 color: rgb(221, 75, 57);
33 margin-top: .5em;
34 }
35
36 #confirm-password:not(.error) #confirm-password-error {
37 display: none;
38 }
39
40 #confirm-password-divider {
41 margin-left: 44px;
42 margin-right: 30px;
43 }
44
45 #confirm-password-right {
46 -webkit-box-flex: 1;
47 margin-top: 1em;
48 }
49
50 <include src="gaia.css">
Nikita (slow) 2014/02/06 05:08:25 Who else includes this CSS?
xiyuan 2014/02/06 05:46:05 This is the only webui uses it right now. Put it i
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698