OLD | NEW |
1 html { | 1 html { |
2 /* This is needed because of chrome://theme/css/new_tab.css */ | 2 /* This is needed because of chrome://theme/css/new_tab.css */ |
3 height: 100%; | 3 height: 100%; |
4 } | 4 } |
5 | 5 |
6 body { | 6 body { |
7 margin: 0; | 7 margin: 0; |
8 } | 8 } |
9 | 9 |
10 #main { | 10 #main { |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 to visible which unfortunately breaks the ellipsis for t | 461 to visible which unfortunately breaks the ellipsis for t |
462 he window items */ | 462 he window items */ |
463 background-image: url(chrome://theme/newtab_closed_window); | 463 background-image: url(chrome://theme/newtab_closed_window); |
464 } | 464 } |
465 | 465 |
466 .window-menu { | 466 .window-menu { |
467 position: absolute; | 467 position: absolute; |
468 display: none; | 468 display: none; |
469 border: 1px solid #999; | 469 border: 1px solid #999; |
470 -webkit-box-shadow: 5px 5px 10px hsla(0, 0%, 0%, .3); | 470 -webkit-box-shadow: 5px 5px 10px hsla(0, 0%, 0%, .3); |
471 background-color: white; | 471 background-color: hsla(213, 0%, 100%, .95); |
472 width: 157px; | 472 width: 157px; |
473 left: 0; | 473 left: 0; |
474 white-space: nowrap; | 474 white-space: nowrap; |
475 opacity: .9; | |
476 z-index: 1; | 475 z-index: 1; |
477 pointer-events: none; | |
478 padding: 1px; | 476 padding: 1px; |
| 477 cursor: default; |
479 } | 478 } |
480 | 479 |
481 .hbox { | 480 .hbox { |
482 display: -webkit-box; | 481 display: -webkit-box; |
483 -webkit-box-orient: horizontal; | 482 -webkit-box-orient: horizontal; |
484 } | 483 } |
485 | 484 |
486 #recent-tabs, | 485 #recent-tabs, |
487 #downloads { | 486 #downloads { |
488 -webkit-box-flex: 1; | 487 -webkit-box-flex: 1; |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 #option-menu > div { | 649 #option-menu > div { |
651 padding: 3px 8px; | 650 padding: 3px 8px; |
652 overflow: hidden; | 651 overflow: hidden; |
653 text-overflow: ellipsis; | 652 text-overflow: ellipsis; |
654 } | 653 } |
655 | 654 |
656 #option-menu > [selected] { | 655 #option-menu > [selected] { |
657 background-color: hsla(213, 66%, 57%, 1); | 656 background-color: hsla(213, 66%, 57%, 1); |
658 color: white; | 657 color: white; |
659 } | 658 } |
OLD | NEW |