OLD | NEW |
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 #gaia-signin { | 6 #gaia-signin { |
7 height: 609px; /* Should be the same as #user-image.loading min-heigth. */ | 7 height: 609px; /* Should be the same as #user-image.loading min-heigth. */ |
8 padding: 70px 17px 69px; /* Screen has no controls. */ | 8 padding: 70px 17px 69px; /* Screen has no controls. */ |
9 width: 722px; /* Should be the same as #user-image.loading width. */ | 9 width: 722px; /* Should be the same as #user-image.loading width. */ |
10 } | 10 } |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 } | 93 } |
94 | 94 |
95 .loading.auth-completed #close-button-item { | 95 .loading.auth-completed #close-button-item { |
96 display: none; | 96 display: none; |
97 } | 97 } |
98 | 98 |
99 #close-button-item:disabled { | 99 #close-button-item:disabled { |
100 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_MASKED); | 100 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_MASKED); |
101 } | 101 } |
102 | 102 |
| 103 #close-button-item:hover { |
| 104 cursor: pointer; |
| 105 } |
| 106 |
103 #back-button-item { | 107 #back-button-item { |
104 background: transparent none; | 108 background: transparent none; |
105 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); | 109 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); |
106 background-position: center; | 110 background-position: center; |
107 background-repeat: no-repeat; | 111 background-repeat: no-repeat; |
108 height: 18px; | 112 height: 18px; |
109 left: 14px; | 113 left: 14px; |
110 position: absolute; | 114 position: absolute; |
111 top: 14px; | 115 top: 14px; |
112 width: 18px; | 116 width: 18px; |
113 z-index: 1; | 117 z-index: 1; |
114 } | 118 } |
115 | 119 |
116 html[dir=rtl] #back-button-item { | 120 html[dir=rtl] #back-button-item { |
117 -webkit-transform: scaleX(-1); | 121 -webkit-transform: scaleX(-1); |
118 left: auto; | 122 left: auto; |
119 right: 14px; | 123 right: 14px; |
120 } | 124 } |
121 | 125 |
122 .new-gaia-flow .full-width #back-button-item { | 126 .new-gaia-flow .full-width #back-button-item { |
123 display: none; | 127 display: none; |
124 } | 128 } |
125 | 129 |
126 #back-button-item:disabled { | 130 #back-button-item:disabled { |
127 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON_MASKED); | 131 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON_MASKED); |
128 } | 132 } |
129 | 133 |
| 134 #back-button-item:hover { |
| 135 cursor: pointer; |
| 136 } |
| 137 |
130 .signin-text { | 138 .signin-text { |
131 color: #666; | 139 color: #666; |
132 margin-top: 20px; | 140 margin-top: 20px; |
133 } | 141 } |
134 | 142 |
135 .signin-link { | 143 .signin-link { |
136 color: rgb(37, 79, 155); | 144 color: rgb(37, 79, 155); |
137 cursor: pointer; | 145 cursor: pointer; |
138 text-decoration: none; | 146 text-decoration: none; |
139 } | 147 } |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 | 315 |
308 html /deep/ #forgotPasswordDlg { | 316 html /deep/ #forgotPasswordDlg { |
309 position: fixed; | 317 position: fixed; |
310 top: 200px; | 318 top: 200px; |
311 width: 350px; | 319 width: 350px; |
312 } | 320 } |
313 | 321 |
314 html /deep/ #forgotPasswordDlg gaia-paper-button[autofocus] { | 322 html /deep/ #forgotPasswordDlg gaia-paper-button[autofocus] { |
315 color: rgb(66, 133, 244); | 323 color: rgb(66, 133, 244); |
316 } | 324 } |
OLD | NEW |