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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 cursor: pointer; | 177 cursor: pointer; |
178 font-size: 13px; | 178 font-size: 13px; |
179 /* Leave room for the scrollbar. */ | 179 /* Leave room for the scrollbar. */ |
180 margin-left: 13px; | 180 margin-left: 13px; |
181 margin-right: 13px; | 181 margin-right: 13px; |
182 margin-top: 5px; | 182 margin-top: 5px; |
183 padding: 0; | 183 padding: 0; |
184 position: fixed; | 184 position: fixed; |
185 right: 0; | 185 right: 0; |
186 text-align: right; | 186 text-align: right; |
187 text-decoration: none; | |
188 top: 0; | 187 top: 0; |
189 z-index: 100; | 188 z-index: 100; |
190 -webkit-box-shadow: none; | 189 -webkit-box-shadow: none; |
191 } | 190 } |
192 | 191 |
193 html[dir='rtl'] #login-container { | 192 html[dir='rtl'] #login-container { |
194 left: 0; | 193 left: 0; |
195 right: auto; | 194 right: auto; |
196 } | 195 } |
197 | 196 |
198 .login-status-icon { | 197 .login-status-icon { |
199 background-position: right center; | 198 background-position: right center; |
200 background-repeat: no-repeat; | 199 background-repeat: no-repeat; |
201 min-height: 27px; | 200 min-height: 27px; |
202 -webkit-padding-end: 37px; | 201 -webkit-padding-end: 37px; |
203 } | 202 } |
204 | 203 |
205 html[dir='rtl'] .login-status-icon { | 204 html[dir='rtl'] .login-status-icon { |
206 background-position-x: left; | 205 background-position-x: left; |
207 } | 206 } |
208 | 207 |
| 208 .profile-name:hover { |
| 209 text-decoration: underline; |
| 210 } |
| 211 |
209 .link-span { | 212 .link-span { |
210 text-decoration: underline; | 213 text-decoration: underline; |
211 } | 214 } |
212 | 215 |
213 #login-status-bubble-contents { | 216 #login-status-bubble-contents { |
214 font-size: 13px; | 217 font-size: 13px; |
215 } | 218 } |
216 | 219 |
217 #login-status-message-container { | 220 #login-status-message-container { |
218 margin-bottom: 13px; | 221 margin-bottom: 13px; |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 padding: 0; | 339 padding: 0; |
337 position: absolute; | 340 position: absolute; |
338 margin: 0; | 341 margin: 0; |
339 max-width: 150px; | 342 max-width: 150px; |
340 min-width: 90px; | 343 min-width: 90px; |
341 outline: none; | 344 outline: none; |
342 top: 0; | 345 top: 0; |
343 z-index: 5; | 346 z-index: 5; |
344 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 347 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
345 } | 348 } |
OLD | NEW |