OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 html { | 5 html { |
6 /* It's necessary to put this here instead of in body in order to get the | 6 /* It's necessary to put this here instead of in body in order to get the |
7 background-size of 100% to work properly */ | 7 background-size of 100% to work properly */ |
8 height: 100%; | 8 height: 100%; |
9 overflow: hidden; | 9 overflow: hidden; |
10 } | 10 } |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 } | 406 } |
407 | 407 |
408 #chrome-web-store-link:hover { | 408 #chrome-web-store-link:hover { |
409 color: #666; | 409 color: #666; |
410 } | 410 } |
411 | 411 |
412 html[dir='rtl'] #chrome-web-store-title { | 412 html[dir='rtl'] #chrome-web-store-title { |
413 background-position-x: left; | 413 background-position-x: left; |
414 } | 414 } |
415 | 415 |
416 #vertical-separator { | |
417 -webkit-order: 2; | |
418 background-color: rgb(178, 178, 178); | |
419 display: none; | |
420 height: 20px; | |
421 margin: 0; | |
422 vertical-align: middle; | |
423 width: 1px; | |
424 } | |
425 | |
426 /* Show the separator only if one of the menus is visible. */ | |
427 .footer-menu-button:not([hidden]) ~ #chrome-web-store-link:not([hidden]) | |
428 ~ #vertical-separator { | |
429 display: inline-block; | |
430 } | |
431 | |
432 /* In trash mode, hide the menus and web store link. */ | 416 /* In trash mode, hide the menus and web store link. */ |
433 #footer.showing-trash-mode .menu-container { | 417 #footer.showing-trash-mode .menu-container { |
434 -webkit-transition-delay: 0ms; | 418 -webkit-transition-delay: 0ms; |
435 opacity: 0; | 419 opacity: 0; |
436 visibility: hidden; | 420 visibility: hidden; |
437 } | 421 } |
438 | 422 |
439 #footer .menu-container { | 423 #footer .menu-container { |
440 -webkit-align-items: center; | 424 -webkit-align-items: center; |
441 -webkit-flex-direction: row; | 425 -webkit-flex-direction: row; |
(...skipping 14 matching lines...) Expand all Loading... |
456 padding: 0; | 440 padding: 0; |
457 } | 441 } |
458 | 442 |
459 .other-sessions-promo-message:only-child { | 443 .other-sessions-promo-message:only-child { |
460 display: block; | 444 display: block; |
461 } | 445 } |
462 | 446 |
463 .other-sessions-promo-message p { | 447 .other-sessions-promo-message p { |
464 margin: 0; | 448 margin: 0; |
465 } | 449 } |
OLD | NEW |