diff --git a/mozilla/toolkit/content/plugins.css b/mozilla/toolkit/content/plugins.css index f4c960baa3e..2935a4b674b 100644 --- a/mozilla/toolkit/content/plugins.css +++ b/mozilla/toolkit/content/plugins.css @@ -36,7 +36,7 @@ * ***** END LICENSE BLOCK ***** */ /* ===== plugins.css ===================================================== - == Styles used by the about:plugins dialog. + == Styles used by the about:plugins page. ======================================================================= */ body { @@ -52,13 +52,13 @@ div#outside { margin-right: 5%; } -div#plugs { +#plugs { text-align: center; font-size: xx-large; font-weight: bold; } -div#noplugs { +#noplugs { font-size: x-large; font-weight: bold; } @@ -67,7 +67,7 @@ div#findmore { margin-top: 2em; } -div.plugname { +.plugname { margin-top: 2em; margin-bottom: 1em; font-size: large; @@ -89,6 +89,11 @@ table { border-spacing: 0px; } +th, td { + border: none; + padding: 3px; +} + th { text-align: center; background-color: Highlight; @@ -105,10 +110,6 @@ td { border-top: 1px dotted ThreeDShadow; } -th, td { - padding: 3px; -} - th.type, th.suff { width: 20%; } diff --git a/mozilla/toolkit/content/plugins.html b/mozilla/toolkit/content/plugins.html index 92d9a00455b..168a7bca603 100644 --- a/mozilla/toolkit/content/plugins.html +++ b/mozilla/toolkit/content/plugins.html @@ -70,9 +70,9 @@ var numPlugins = navigator.plugins.length; if (numPlugins > 0) - document.writeln("
| " + pluginsbundle.GetStringFromName("mimetype_label") + "<\/th>"); document.writeln(" | " + pluginsbundle.GetStringFromName("description_label") + "<\/th>"); |
|---|