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-header-container { |
| 199 -webkit-box-align: center; |
| 200 -webkit-box-orient: horizontal; |
| 201 -webkit-box-pack: end; |
| 202 display: -webkit-box; |
| 203 } |
| 204 |
| 205 #login-status-header { |
| 206 display: block; |
| 207 } |
| 208 |
| 209 #login-status-icon { |
| 210 width: 27px; |
| 211 border-style: solid; |
| 212 border-color: #c6c6c6; |
| 213 border-width: 1px; |
| 214 margin-left: 10px; |
| 215 } |
| 216 |
198 .link-span { | 217 .link-span { |
199 text-decoration: underline; | 218 text-decoration: underline; |
200 } | 219 } |
201 | 220 |
202 #login-status-bubble-contents { | 221 #login-status-bubble-contents { |
203 font-size: 13px; | 222 font-size: 13px; |
204 } | 223 } |
205 | 224 |
206 #login-status-message-container { | 225 #login-status-message-container { |
207 margin-bottom: 13px; | 226 margin-bottom: 13px; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 padding: 0; | 289 padding: 0; |
271 position: absolute; | 290 position: absolute; |
272 margin: 0; | 291 margin: 0; |
273 max-width: 150px; | 292 max-width: 150px; |
274 min-width: 90px; | 293 min-width: 90px; |
275 outline: none; | 294 outline: none; |
276 top: 0; | 295 top: 0; |
277 z-index: 5; | 296 z-index: 5; |
278 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 297 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
279 } | 298 } |
OLD | NEW |