| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 * show the link to the Flash storage settings manager: | 565 * show the link to the Flash storage settings manager: |
| 566 */ | 566 */ |
| 567 html[flashPluginSupportsClearSiteData] .flash-plugin-area, | 567 html[flashPluginSupportsClearSiteData] .flash-plugin-area, |
| 568 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, | 568 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, |
| 569 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled { | 569 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled { |
| 570 display: none; | 570 display: none; |
| 571 } | 571 } |
| 572 | 572 |
| 573 | 573 |
| 574 /* Display a collection of sections as a table in order to display nicely | 574 /* Display a collection of sections as a table in order to display nicely |
| 575 * in multiple locales. The left column should expand to accomodate the | 575 * in multiple locales. This is a further refinement of the displaytable class |
| 576 * widest label without introducing excessive whitespace. Labels in | 576 * in webui.css. |
| 577 * languages such as German or Dutch tend to be wider than for English. | |
| 578 */ | 577 */ |
| 579 .displaytable { | 578 .displaytable { |
| 580 display: table; | |
| 581 width: 100%; | 579 width: 100%; |
| 582 } | 580 } |
| 583 | 581 |
| 584 .displaytable > section { | 582 .displaytable > section { |
| 585 display: table-row; | 583 display: table-row; |
| 586 } | 584 } |
| 587 | 585 |
| 588 /* right table column containing settable options */ | 586 /* right table column containing settable options */ |
| 589 .displaytable > section > h3 + div, | 587 .displaytable > section > h3 + div, |
| 590 .displaytable > section > h3 + table { | 588 .displaytable > section > h3 + table { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 601 display: table-cell; | 599 display: table-cell; |
| 602 vertical-align: baseline; | 600 vertical-align: baseline; |
| 603 border-bottom: 1px solid #eeeeee; | 601 border-bottom: 1px solid #eeeeee; |
| 604 } | 602 } |
| 605 | 603 |
| 606 /* do not display a border after the last section in the table */ | 604 /* do not display a border after the last section in the table */ |
| 607 .displaytable:not([searching='true']) > section:last-child > * { | 605 .displaytable:not([searching='true']) > section:last-child > * { |
| 608 border-bottom: none; | 606 border-bottom: none; |
| 609 } | 607 } |
| 610 | 608 |
| OLD | NEW |