| OLD | NEW |
| 1 .hbox { | 1 .hbox { |
| 2 display: -webkit-box; | 2 display: -webkit-box; |
| 3 -webkit-box-orient: horizontal; | 3 -webkit-box-orient: horizontal; |
| 4 } | 4 } |
| 5 | 5 |
| 6 .vbox { | 6 .vbox { |
| 7 display: -webkit-box; | 7 display: -webkit-box; |
| 8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 | 533 |
| 534 /* This matches the native list outline on Mac */ | 534 /* This matches the native list outline on Mac */ |
| 535 html[os=mac] list[hasElementFocus] { | 535 html[os=mac] list[hasElementFocus] { |
| 536 outline-color: #759ad9; | 536 outline-color: #759ad9; |
| 537 outline-offset: -1px; | 537 outline-offset: -1px; |
| 538 outline-style: auto; | 538 outline-style: auto; |
| 539 outline-width: 5px; | 539 outline-width: 5px; |
| 540 } | 540 } |
| 541 | 541 |
| 542 .suboption { | 542 .suboption { |
| 543 -webkit-margin-start: 16px; | 543 -webkit-margin-start: 23px; |
| 544 } | 544 } |
| 545 | 545 |
| 546 .informational-text { | 546 .informational-text { |
| 547 color: grey; | 547 color: grey; |
| 548 } | 548 } |
| 549 | 549 |
| 550 #main-content list.autocomplete-suggestions { | 550 #main-content list.autocomplete-suggestions { |
| 551 background-color: white; | 551 background-color: white; |
| 552 border: 1px solid #aaa; | 552 border: 1px solid #aaa; |
| 553 border-radius: 2px; | 553 border-radius: 2px; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 .displaytable > section > * { | 604 .displaytable > section > * { |
| 605 display: table-cell; | 605 display: table-cell; |
| 606 vertical-align: baseline; | 606 vertical-align: baseline; |
| 607 border-bottom: 1px solid #eeeeee; | 607 border-bottom: 1px solid #eeeeee; |
| 608 } | 608 } |
| 609 | 609 |
| 610 /* do not display a border after the last section in the table */ | 610 /* do not display a border after the last section in the table */ |
| 611 .displaytable:not([searching='true']) > section:last-child > * { | 611 .displaytable:not([searching='true']) > section:last-child > * { |
| 612 border-bottom: none; | 612 border-bottom: none; |
| 613 } | 613 } |
| OLD | NEW |