OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 * This is the stylesheet used by user pods row of account picker UI. | 5 * This is the stylesheet used by user pods row of account picker UI. |
6 */ | 6 */ |
7 | 7 |
8 podrow { | 8 podrow { |
9 /* Temporarily disabled because animation interferes with updating screen's | 9 /* Temporarily disabled because animation interferes with updating screen's |
10 size. */ | 10 size. */ |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 | 319 |
320 .action-box-area.active ~ .action-box-menu { | 320 .action-box-area.active ~ .action-box-menu { |
321 background-color: white; | 321 background-color: white; |
322 border: 1px solid lightgray; | 322 border: 1px solid lightgray; |
323 border-radius: 2px; | 323 border-radius: 2px; |
324 display: flex; | 324 display: flex; |
325 flex-direction: column; | 325 flex-direction: column; |
326 font-size: 13px; | 326 font-size: 13px; |
327 position: absolute; | 327 position: absolute; |
328 right: 5px; | 328 right: 5px; |
| 329 width: 220px; |
| 330 } |
| 331 |
| 332 .action-box-area.active ~ .action-box-menu:not(.menu-moved-up) { |
329 top: 18px; | 333 top: 18px; |
330 width: 220px; | 334 } |
| 335 |
| 336 .action-box-area.active ~ .action-box-menu.menu-moved-up { |
| 337 bottom: 210px; |
| 338 } |
| 339 |
| 340 .action-box-area.menu-moved-up { |
| 341 -webkit-transform: rotate(180deg); |
331 } | 342 } |
332 | 343 |
333 html[dir=rtl] .action-box-area.active ~ .action-box-menu { | 344 html[dir=rtl] .action-box-area.active ~ .action-box-menu { |
334 left: 5px; | 345 left: 5px; |
335 right: auto; | 346 right: auto; |
336 } | 347 } |
337 | 348 |
338 .action-box-menu-title { | 349 .action-box-menu-title { |
339 color: #b4b4b4; | 350 color: #b4b4b4; |
340 display: flex; | 351 display: flex; |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
576 top: 4px; | 587 top: 4px; |
577 } | 588 } |
578 | 589 |
579 .pod.public-account.expanded.advanced .language-and-input-container { | 590 .pod.public-account.expanded.advanced .language-and-input-container { |
580 display: none; | 591 display: none; |
581 } | 592 } |
582 | 593 |
583 .enter-button { | 594 .enter-button { |
584 font-size: 14px; | 595 font-size: 14px; |
585 } | 596 } |
OLD | NEW |