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 display: -webkit-box; | |
200 -webkit-box-align: center; | |
201 -webkit-box-orient: horizontal; | |
202 -webkit-box-pack: end; | |
203 } | |
204 | |
205 #login-status-header { | |
206 display: block; | |
207 } | |
208 | |
209 #login-status-icon-container { | |
210 /* Draw a border inside the icon by using an inset shadow. */ | |
Evan Stade
2011/11/29 02:27:48
why can't you use an actual border?
sail
2011/11/29 19:11:04
I need to draw the border inside the image. I coul
| |
211 -webkit-box-shadow: inset 0px 0px 1px black; | |
Evan Stade
2011/11/29 02:27:48
in this file, -webkit-foo comes at the end of the
sail
2011/11/29 19:11:04
Done.
| |
212 width: 27px; | |
213 height: 27px; | |
214 margin-left: 10px; | |
215 } | |
216 | |
217 #login-status-icon { | |
218 position: relative; | |
219 width: 27px; | |
220 z-index: -1; | |
221 } | |
222 | |
198 .link-span { | 223 .link-span { |
199 text-decoration: underline; | 224 text-decoration: underline; |
200 } | 225 } |
201 | 226 |
202 #login-status-bubble-contents { | 227 #login-status-bubble-contents { |
203 font-size: 13px; | 228 font-size: 13px; |
204 } | 229 } |
205 | 230 |
206 #login-status-message-container { | 231 #login-status-message-container { |
207 margin-bottom: 13px; | 232 margin-bottom: 13px; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
270 padding: 0; | 295 padding: 0; |
271 position: absolute; | 296 position: absolute; |
272 margin: 0; | 297 margin: 0; |
273 max-width: 150px; | 298 max-width: 150px; |
274 min-width: 90px; | 299 min-width: 90px; |
275 outline: none; | 300 outline: none; |
276 top: 0; | 301 top: 0; |
277 z-index: 5; | 302 z-index: 5; |
278 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 303 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
279 } | 304 } |
OLD | NEW |