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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 | 416 |
417 /* Put the recently closed menu to the left when it's not visible. */ | 417 /* Put the recently closed menu to the left when it's not visible. */ |
418 #recently-closed-menu-button.invisible { | 418 #recently-closed-menu-button.invisible { |
419 -webkit-flex-order: -1; | 419 -webkit-flex-order: -1; |
420 visibility: hidden; | 420 visibility: hidden; |
421 } | 421 } |
422 | 422 |
423 #other-sessions-menu-button.invisible { | 423 #other-sessions-menu-button.invisible { |
424 display: none; | 424 display: none; |
425 } | 425 } |
| 426 |
| 427 .other-sessions-promo-message { |
| 428 display: none; |
| 429 padding: 0; |
| 430 } |
| 431 |
| 432 .other-sessions-promo-message:only-child { |
| 433 display: block; |
| 434 } |
| 435 |
| 436 .other-sessions-promo-message p { |
| 437 margin: 0; |
| 438 } |
OLD | NEW |