Index: trunk/extensions/CongressLookup/SpecialCongressLookup.php |
— | — | @@ -89,6 +89,7 @@ |
90 | 90 | table.person { |
91 | 91 | margin-bottom: 1em; |
92 | 92 | border: none; |
| 93 | + border-collapse:collapse; |
93 | 94 | } |
94 | 95 | table.person td.name { |
95 | 96 | font-weight: bold; |
— | — | @@ -169,7 +170,7 @@ |
170 | 171 | if ( $myRepresentative ) { |
171 | 172 | |
172 | 173 | $congressTable .= "\n" . Html::openElement( 'table', array ( |
173 | | - 'class' => 'person', 'cellpadding' => 0, 'cellspacing' => 0, 'border' => 0 |
| 174 | + 'class' => 'person', |
174 | 175 | ) ); |
175 | 176 | |
176 | 177 | $congressTable .= "\n" . Html::rawElement( 'tr', array(), |
— | — | @@ -201,7 +202,7 @@ |
202 | 203 | } |
203 | 204 | foreach ( $mySenators as $senator ) { |
204 | 205 | $congressTable .= "\n" . Html::openElement( 'table', array ( |
205 | | - 'class' => 'person', 'cellpadding' => 0, 'cellspacing' => 0, 'border' => 0 |
| 206 | + 'class' => 'person', |
206 | 207 | ) ); |
207 | 208 | |
208 | 209 | $congressTable .= "\n" . Html::rawElement( 'tr', array(), |