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; | 187 text-decoration: none; |
Evan Stade
2011/12/06 20:21:39
i dont think you need this any more?
Tyler Breisacher (Chromium)
2011/12/06 22:49:59
Good point. In fact, as far as I can tell we never
| |
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 #login-container:hover { | |
194 text-decoration: underline; | |
sail
2011/12/06 19:02:42
Currently we use the login-container to show two d
Tyler Breisacher (Chromium)
2011/12/06 19:33:22
for #1, I'm seeing my email address on my installe
sail
2011/12/06 19:41:43
Yea, this is a new change on trunk that uses your
| |
195 } | |
196 | |
193 html[dir='rtl'] #login-container { | 197 html[dir='rtl'] #login-container { |
194 left: 0; | 198 left: 0; |
195 right: auto; | 199 right: auto; |
196 } | 200 } |
197 | 201 |
198 .login-status-icon { | 202 .login-status-icon { |
199 background-position: right center; | 203 background-position: right center; |
200 background-repeat: no-repeat; | 204 background-repeat: no-repeat; |
201 min-height: 27px; | 205 min-height: 27px; |
202 -webkit-padding-end: 37px; | 206 -webkit-padding-end: 37px; |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
336 padding: 0; | 340 padding: 0; |
337 position: absolute; | 341 position: absolute; |
338 margin: 0; | 342 margin: 0; |
339 max-width: 150px; | 343 max-width: 150px; |
340 min-width: 90px; | 344 min-width: 90px; |
341 outline: none; | 345 outline: none; |
342 top: 0; | 346 top: 0; |
343 z-index: 5; | 347 z-index: 5; |
344 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 348 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
345 } | 349 } |
OLD | NEW |