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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 * show the link to the Flash storage settings manager: | 570 * show the link to the Flash storage settings manager: |
571 */ | 571 */ |
572 html[flashPluginSupportsClearSiteData] .flash-plugin-area, | 572 html[flashPluginSupportsClearSiteData] .flash-plugin-area, |
573 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, | 573 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, |
574 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled { | 574 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled { |
575 display: none; | 575 display: none; |
576 } | 576 } |
577 | 577 |
578 | 578 |
579 /* Display a collection of sections as a table in order to display nicely | 579 /* Display a collection of sections as a table in order to display nicely |
580 * in multiple locales. This is a further refinement of the displaytable class | 580 * in multiple locales. |
581 * in webui.css. | |
582 */ | 581 */ |
583 .displaytable { | 582 .displaytable { |
| 583 display: table; |
584 width: 100%; | 584 width: 100%; |
585 } | 585 } |
586 | 586 |
587 .displaytable > section { | 587 .displaytable > section { |
588 display: table-row; | 588 display: table-row; |
589 } | 589 } |
590 | 590 |
591 /* right table column containing settable options */ | 591 /* right table column containing settable options */ |
592 .displaytable > section > h3 + div, | 592 .displaytable > section > h3 + div, |
593 .displaytable > section > h3 + table { | 593 .displaytable > section > h3 + table { |
594 padding-bottom: 20px; | 594 padding-bottom: 20px; |
595 } | 595 } |
596 | 596 |
597 /* Setting the padding on the header so the alignment doesn't depend on the | 597 /* Setting the padding on the header so the alignment doesn't depend on the |
598 * contents of the right table column. */ | 598 * contents of the right table column. */ |
599 .displaytable > section > h3 { | 599 .displaytable > section > h3 { |
600 padding-top: 17px; | 600 padding-top: 17px; |
601 } | 601 } |
602 | 602 |
603 .displaytable > section > * { | 603 .displaytable > section > * { |
604 display: table-cell; | 604 display: table-cell; |
605 vertical-align: baseline; | 605 vertical-align: baseline; |
606 border-bottom: 1px solid #eeeeee; | 606 border-bottom: 1px solid #eeeeee; |
607 } | 607 } |
608 | 608 |
609 /* do not display a border after the last section in the table */ | 609 /* do not display a border after the last section in the table */ |
610 .displaytable:not([searching='true']) > section:last-child > * { | 610 .displaytable:not([searching='true']) > section:last-child > * { |
611 border-bottom: none; | 611 border-bottom: none; |
612 } | 612 } |
OLD | NEW |