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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 } | 66 } |
67 | 67 |
68 .loading #close-button-item { | 68 .loading #close-button-item { |
69 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); | 69 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); |
70 } | 70 } |
71 | 71 |
72 #close-button-item:disabled { | 72 #close-button-item:disabled { |
73 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_MASKED); | 73 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_MASKED); |
74 } | 74 } |
75 | 75 |
| 76 #back-button-item { |
| 77 background: transparent none; |
| 78 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); |
| 79 background-position: center; |
| 80 background-repeat: no-repeat; |
| 81 height: 18px; |
| 82 left: 14px; |
| 83 position: absolute; |
| 84 top: 14px; |
| 85 width: 18px; |
| 86 z-index: 1; |
| 87 } |
| 88 |
| 89 html[dir=rtl] #close-button-item { |
| 90 left: auto; |
| 91 right: 14px; |
| 92 } |
| 93 |
| 94 #back-button-item:disabled { |
| 95 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON_MASKED); |
| 96 } |
| 97 |
76 .signin-text { | 98 .signin-text { |
77 color: #666; | 99 color: #666; |
78 margin-top: 20px; | 100 margin-top: 20px; |
79 } | 101 } |
80 | 102 |
81 .signin-link { | 103 .signin-link { |
82 color: rgb(37, 79, 155); | 104 color: rgb(37, 79, 155); |
83 cursor: pointer; | 105 cursor: pointer; |
84 text-decoration: none; | 106 text-decoration: none; |
85 } | 107 } |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 left: 0; | 218 left: 0; |
197 position: absolute; | 219 position: absolute; |
198 right: 0; | 220 right: 0; |
199 text-align: center; | 221 text-align: center; |
200 top: 50px; | 222 top: 50px; |
201 } | 223 } |
202 | 224 |
203 #saml-notice-message { | 225 #saml-notice-message { |
204 margin: 0 auto; | 226 margin: 0 auto; |
205 } | 227 } |
OLD | NEW |