| OLD | NEW |
| 1 .hbox { |
| 2 display: -webkit-box; |
| 3 -webkit-box-orient: horizontal; |
| 4 } |
| 5 |
| 6 .vbox { |
| 7 display: -webkit-box; |
| 8 -webkit-box-orient: vertical; |
| 9 } |
| 10 |
| 11 .stretch { |
| 12 -webkit-box-flex: 1; |
| 13 } |
| 14 |
| 1 .frozen, | 15 .frozen, |
| 2 .subpage-sheet-container.frozen { | 16 .subpage-sheet-container.frozen { |
| 3 position: fixed; | 17 position: fixed; |
| 4 } | 18 } |
| 5 | 19 |
| 6 #search-field { | 20 #search-field { |
| 7 font-size: inherit; | 21 font-size: inherit; |
| 8 margin: 0; | 22 margin: 0; |
| 9 } | 23 } |
| 10 | 24 |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 display: table-cell; | 582 display: table-cell; |
| 569 vertical-align: baseline; | 583 vertical-align: baseline; |
| 570 border-bottom: 1px solid #eeeeee; | 584 border-bottom: 1px solid #eeeeee; |
| 571 } | 585 } |
| 572 | 586 |
| 573 /* do not display a border after the last section in the table */ | 587 /* do not display a border after the last section in the table */ |
| 574 .displaytable:not([searching='true']) > section:last-child > * { | 588 .displaytable:not([searching='true']) > section:last-child > * { |
| 575 border-bottom: none; | 589 border-bottom: none; |
| 576 } | 590 } |
| 577 | 591 |
| OLD | NEW |