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. |
James Hawkins
2011/10/25 01:13:32
Should probably mention that this is further refin
dpapad
2011/10/25 15:36:12
Done.
| |
576 * widest label without introducing excessive whitespace. Labels in | |
577 * languages such as German or Dutch tend to be wider than for English. | |
578 */ | 576 */ |
579 .displaytable { | 577 .displaytable { |
580 display: table; | |
581 width: 100%; | 578 width: 100%; |
582 } | 579 } |
583 | 580 |
584 .displaytable > section { | 581 .displaytable > section { |
585 display: table-row; | 582 display: table-row; |
586 } | 583 } |
587 | 584 |
588 /* right table column containing settable options */ | 585 /* right table column containing settable options */ |
589 .displaytable > section > h3 + div, | 586 .displaytable > section > h3 + div, |
590 .displaytable > section > h3 + table { | 587 .displaytable > section > h3 + table { |
(...skipping 10 matching lines...) Expand all Loading... | |
601 display: table-cell; | 598 display: table-cell; |
602 vertical-align: baseline; | 599 vertical-align: baseline; |
603 border-bottom: 1px solid #eeeeee; | 600 border-bottom: 1px solid #eeeeee; |
604 } | 601 } |
605 | 602 |
606 /* do not display a border after the last section in the table */ | 603 /* do not display a border after the last section in the table */ |
607 .displaytable:not([searching='true']) > section:last-child > * { | 604 .displaytable:not([searching='true']) > section:last-child > * { |
608 border-bottom: none; | 605 border-bottom: none; |
609 } | 606 } |
610 | 607 |
OLD | NEW |