OLD | NEW |
---|---|
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 html { | 6 html { |
7 font-family: segoe ui, arial, helvetica, sans-serif; | 7 font-family: segoe ui, arial, helvetica, sans-serif; |
8 font-size: 14px; | 8 font-size: 14px; |
9 /* It's necessary to put this here instead of in body in order to get the | 9 /* It's necessary to put this here instead of in body in order to get the |
10 background-size of 100% to work properly */ | 10 background-size of 100% to work properly */ |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
188 top: 0; | 188 top: 0; |
189 z-index: 100; | 189 z-index: 100; |
190 -webkit-box-shadow: none; | 190 -webkit-box-shadow: none; |
191 } | 191 } |
192 | 192 |
193 html[dir='rtl'] #login-container { | 193 html[dir='rtl'] #login-container { |
194 left: 0; | 194 left: 0; |
195 right: auto; | 195 right: auto; |
196 } | 196 } |
197 | 197 |
198 .login-status-icon { | |
199 background-repeat:no-repeat; | |
Evan Stade
2011/12/02 21:02:16
space
sail
2011/12/03 00:09:00
Done.
| |
200 background-position: right center; | |
201 min-height: 27px; | |
202 padding-right: 37px; | |
Evan Stade
2011/12/02 21:02:16
-webkit-padding-end
sail
2011/12/03 00:09:00
Done.
| |
203 } | |
204 | |
205 html[dir='rtl'] .login-status-icon { | |
206 background-position: left center; | |
Evan Stade
2011/12/02 21:02:16
nit: only change background-position-x
sail
2011/12/03 00:09:00
Done.
| |
207 padding-right: 0; | |
208 padding-left: 37px; | |
209 } | |
210 | |
198 .link-span { | 211 .link-span { |
199 text-decoration: underline; | 212 text-decoration: underline; |
200 } | 213 } |
201 | 214 |
202 #login-status-bubble-contents { | 215 #login-status-bubble-contents { |
203 font-size: 13px; | 216 font-size: 13px; |
204 } | 217 } |
205 | 218 |
206 #login-status-message-container { | 219 #login-status-message-container { |
207 margin-bottom: 13px; | 220 margin-bottom: 13px; |
208 } | 221 } |
209 | 222 |
210 #login-status-learn-more { | 223 #login-status-learn-more { |
211 display: inline-block; | 224 display: inline-block; |
212 } | 225 } |
213 | 226 |
214 #login-status-action-area { | 227 .login-status-vcenter { |
Evan Stade
2011/12/02 21:02:16
can you come up with a better name? login-status-r
sail
2011/12/03 00:09:00
Done.
| |
228 display: -webkit-box; | |
215 -webkit-box-align: center; | 229 -webkit-box-align: center; |
216 -webkit-box-orient: horizontal; | 230 -webkit-box-orient: horizontal; |
217 -webkit-box-pack: end; | 231 -webkit-box-pack: end; |
218 display: -webkit-box; | |
219 } | 232 } |
220 | 233 |
221 #login-status-advanced-container { | 234 #login-status-advanced-container { |
222 -webkit-box-flex: 1; | 235 -webkit-box-flex: 1; |
223 } | 236 } |
224 | 237 |
225 #login-status-dismiss { | 238 #login-status-dismiss { |
226 min-width: 6em; | 239 min-width: 6em; |
227 } | 240 } |
228 | 241 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
270 padding: 0; | 283 padding: 0; |
271 position: absolute; | 284 position: absolute; |
272 margin: 0; | 285 margin: 0; |
273 max-width: 150px; | 286 max-width: 150px; |
274 min-width: 90px; | 287 min-width: 90px; |
275 outline: none; | 288 outline: none; |
276 top: 0; | 289 top: 0; |
277 z-index: 5; | 290 z-index: 5; |
278 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 291 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
279 } | 292 } |
OLD | NEW |