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 { | |
Evan Stade
2011/12/02 00:03:26
I meant to suggest this should be consolidated wit
sail
2011/12/02 01:19:57
Sorry, consolidated with which rule block?
Evan Stade
2011/12/02 02:25:16
#login-status-action-area (in fact it's probably a
sail
2011/12/02 18:42:28
Done.
| |
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 { | |
Evan Stade
2011/12/02 00:03:26
so no border then? if no border, then I guess we d
sail
2011/12/02 01:19:57
I don't think I understand. Don't I still need an
Evan Stade
2011/12/02 02:25:16
make it a background image of login-status-header-
sail
2011/12/02 18:42:28
Done.
| |
210 margin-left: 10px; | |
211 width: 27px; | |
Evan Stade
2011/12/02 00:03:26
alphabet
sail
2011/12/02 01:19:57
Done.
| |
212 height: 27px; | |
213 } | |
214 | |
198 .link-span { | 215 .link-span { |
199 text-decoration: underline; | 216 text-decoration: underline; |
200 } | 217 } |
201 | 218 |
202 #login-status-bubble-contents { | 219 #login-status-bubble-contents { |
203 font-size: 13px; | 220 font-size: 13px; |
204 } | 221 } |
205 | 222 |
206 #login-status-message-container { | 223 #login-status-message-container { |
207 margin-bottom: 13px; | 224 margin-bottom: 13px; |
208 } | 225 } |
209 | 226 |
210 #login-status-learn-more { | 227 #login-status-learn-more { |
211 display: inline-block; | 228 display: inline-block; |
212 } | 229 } |
213 | 230 |
214 #login-status-action-area { | 231 #login-status-action-area { |
232 display: -webkit-box; | |
215 -webkit-box-align: center; | 233 -webkit-box-align: center; |
216 -webkit-box-orient: horizontal; | 234 -webkit-box-orient: horizontal; |
217 -webkit-box-pack: end; | 235 -webkit-box-pack: end; |
218 display: -webkit-box; | |
219 } | 236 } |
220 | 237 |
221 #login-status-advanced-container { | 238 #login-status-advanced-container { |
222 -webkit-box-flex: 1; | 239 -webkit-box-flex: 1; |
223 } | 240 } |
224 | 241 |
225 #login-status-dismiss { | 242 #login-status-dismiss { |
226 min-width: 6em; | 243 min-width: 6em; |
227 } | 244 } |
228 | 245 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
270 padding: 0; | 287 padding: 0; |
271 position: absolute; | 288 position: absolute; |
272 margin: 0; | 289 margin: 0; |
273 max-width: 150px; | 290 max-width: 150px; |
274 min-width: 90px; | 291 min-width: 90px; |
275 outline: none; | 292 outline: none; |
276 top: 0; | 293 top: 0; |
277 z-index: 5; | 294 z-index: 5; |
278 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 295 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
279 } | 296 } |
OLD | NEW |