Skip to content

Commit

Permalink
* css/default.css: fix the problem where all td's inside div's with
Browse files Browse the repository at this point in the history
    text-align: center on them were getting centred.  The temporary fix is
    to tell all td's that they are left aligned again and override it for
    td's inside tr's with row-category class but this seems like a hacky way
    to do this and I've never had these problems on any other site so there
    must be a better solution.


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2127 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Julian Fitzell committed Mar 25, 2003
1 parent 0fd77ab commit 3de4d4e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions css/default.css
Expand Up @@ -27,7 +27,7 @@ table.width75 { width: 75%; border: solid 1px #000000; }
table.width60 { width: 60%; border: solid 1px #000000; }
table.width50 { width: 50%; border: solid 1px #000000; }

td { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; padding: 4px;}
td { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; padding: 4px; text-align:left;}
td.category { background-color: #c8c8e8; color: #000000; font-weight: bold; }

td.center { text-align: center; }
Expand All @@ -49,7 +49,8 @@ td.print-spacer { background-color: #ffffff; color: #000000; font-size: 1pt; li
tr {}
tr.row-1 { background-color: #d8d8d8; color: #000000; }
tr.row-2 { background-color: #e8e8e8; color: #000000; }
tr.row-category { background-color: #c8c8e8; color: #000000; font-weight: bold; text-align:center;}
tr.row-category { background-color: #c8c8e8; color: #000000; font-weight: bold;}
tr.row-category td { text-align:center; }
tr.row-category2 { background-color: #c8c8e8; color: #000000; }
tr.print { vertical-align: top; }
tr.print-category { color: #000000; font-weight: bold; }
Expand Down

0 comments on commit 3de4d4e

Please sign in to comment.