OLD | NEW |
---|---|
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 The Chromium Authors. All rights reserved. |
bartfab (slow)
2014/02/04 20:10:47
Nit: A lot of this file looks like it was copy & p
xiyuan
2014/02/04 21:23:10
The password field and the blue button could be pu
| |
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; | 25 } |
26 | |
27 #confirm-password-input-container { | |
28 margin-bottom: 1em; | |
15 } | 29 } |
16 | 30 |
17 #confirm-password-input { | 31 #confirm-password-input { |
18 margin-top: 10px; | 32 border: 1px solid #d9d9d9; |
33 border-radius: 1px; | |
34 border-top: 1px solid #c0c0c0; | |
35 font-size: 15px; | |
36 height: 32px; | |
37 margin: 0; | |
38 padding: 0 8px; | |
19 width: 100%; | 39 width: 100%; |
20 } | 40 } |
41 | |
42 #confirm-password-input:focus { | |
43 border: 1px solid rgb(77, 144, 254); | |
44 box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); | |
45 outline: none; | |
46 } | |
47 | |
48 #confirm-password-error { | |
49 color: rgb(221, 75, 57); | |
50 margin-top: .5em; | |
51 } | |
52 | |
53 #confirm-password:not(.error) #confirm-password-error { | |
54 display: none; | |
55 } | |
56 | |
57 #confirm-password-divider { | |
58 margin-left: 44px; | |
59 margin-right: 30px; | |
60 } | |
61 | |
62 #confirm-password-right { | |
63 -webkit-box-flex: 1; | |
64 margin-top: 1em; | |
65 } | |
66 | |
67 .blue-button { | |
68 background-color: rgb(77, 144, 254); | |
69 background-image: -webkit-linear-gradient(top, | |
70 rgb(77, 144, 254), | |
71 rgb(71, 135, 237)); | |
72 border: 1px solid rgb(48, 121, 237); | |
73 border-radius: 2px; | |
74 color: #fff; | |
75 font-size: 13px; | |
76 font-weight: bold; | |
77 height: 32px; | |
78 margin: 0 1.5em 1.2em 0; | |
79 text-shadow: 0 1px rgba(0, 0, 0, 0.1); | |
80 } | |
81 | |
82 .blue-button:hover { | |
83 background-color: rgb(53, 122, 232); | |
84 background-image: -webkit-linear-gradient(top, | |
85 rgb(77, 144, 254), | |
86 rgb(53, 122, 232)); | |
87 border: 1px solid rgb(47, 91, 183); | |
88 text-shadow: 0 1px rgba(0, 0, 0, 0.3); | |
89 } | |
90 | |
91 .blue-button:focus { | |
92 -webkit-box-shadow: inset 0 0 0 1px #fff; | |
93 } | |
94 | |
95 .blue-button:focus:hover { | |
96 -webkit-box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0, 0, 0, 0.1); | |
97 } | |
OLD | NEW |