Description

Table formatting in the default theme (Modern) needs a little more left-right cell padding and table left-margin.

Steps to reproduce

  1. Make a simple table using the default theme (Modern).

Example

Old:

DefaultThemeTablePadding_1.png

Proposed new style:

DefaultThemeTablePadding_2.png

Details

This Wiki.

Workaround

Create a near-identical personal version CSS sheet.

Discussion

It's only a minor gripe I guess, but it really annoys me.

Proposed patch:

--- common.css.orig     2005-09-29 14:59:25.381291951 +1000
+++ common.css  2005-09-29 15:06:44.273764723 +1000
@@ -97,13 +97,13 @@
 
 table
 {
-       margin: 0.5em 0;
+       margin: 0.5em 0 0 0.5em;
        border-collapse: collapse;
 }
 
 td
 {
-       padding: 0.25em;
+       padding: 0.25em 0.5em 0.25em 0.5em;
        border: 1pt solid #ADB9CC;
 }

(This is my first "bug" report. I hope I got everything right. :) -- JasonStirling 2005-09-29 06:57:06 )

Plan


CategoryMoinMoinBugFixed

MoinMoin: MoinMoinBugs/DefaultThemeTablePadding (last edited 2007-10-29 19:09:15 by localhost)