Index: branches/wmf/1.18wmf1/extensions/CongressLookup/CongressLookup.i18n.php |
— | — | @@ -20,7 +20,8 @@ |
21 | 21 | 'congresslookup-fax' => 'Fax: $1', |
22 | 22 | 'congresslookup-contact-form' => 'Contact form', |
23 | 23 | 'congresslookup-twitter' => 'Twitter: $1', |
24 | | - 'congresslookup-your-reps' => 'Your Representatives:', |
| 24 | + 'congresslookup-your-reps' => 'Your representatives:', |
| 25 | + 'congresslookup-contact-your-reps' => 'Contact your representatives:', |
25 | 26 | 'congresslookup-no-house-rep' => 'No House representative was found for your zip code.', |
26 | 27 | 'congresslookup-no-senators' => 'No senators were found for your zip code.', |
27 | 28 | 'congresslookup-report-errors' => 'Report an error', |
Index: branches/wmf/1.18wmf1/extensions/CongressLookup/SpecialCongressLookup.php |
— | — | @@ -99,7 +99,7 @@ |
100 | 100 | |
101 | 101 | $congressTable = ''; |
102 | 102 | |
103 | | - $congressTable .= Html::element( 'h4', array(), 'Your Representatives:' ); |
| 103 | + $congressTable .= Html::element( 'h4', array(), wfMsg( 'congresslookup-your-reps' ) ); |
104 | 104 | |
105 | 105 | if ( $myRepresentatives ) { |
106 | 106 | foreach ( $myRepresentatives as $myRepresentative ) { |
— | — | @@ -207,8 +207,8 @@ |
208 | 208 | private function getZipForm( $isError=false ) { |
209 | 209 | $htmlOut = <<<HTML |
210 | 210 | <div id="sopaZipForm" class="sopaActionDiv"> |
211 | | -<h4>Contact your representatives</h4> |
212 | 211 | HTML; |
| 212 | + $htmlOut .= Html::element( 'h4', array(), wfMsg( 'congresslookup-contact-your-reps' )); |
213 | 213 | if ( $isError ) { |
214 | 214 | $htmlOut .= Html::element( 'p', array( 'class' => 'error' ), wfMsg( 'congresslookup-zipcode-error' )); |
215 | 215 | } |
— | — | @@ -388,11 +388,16 @@ |
389 | 389 | } |
390 | 390 | div#instructions { |
391 | 391 | position: absolute; |
392 | | - top: 67px; |
393 | | - left: 480px; |
| 392 | + top: 47px; |
| 393 | + left: 460px; |
394 | 394 | text-align: left; |
395 | 395 | width: 500px; |
396 | | - padding-bottom: 30px; |
| 396 | + padding: 20px; |
| 397 | + background-color: #ffffff; |
| 398 | + filter:alpha(opacity=90); |
| 399 | + -moz-opacity:0.90; |
| 400 | + -khtml-opacity: 0.90; |
| 401 | + opacity: 0.90; |
397 | 402 | } |
398 | 403 | div#instructions p { |
399 | 404 | text-align:justify; |
— | — | @@ -416,6 +421,12 @@ |
417 | 422 | div#contacts form { |
418 | 423 | margin-bottom: 1em; |
419 | 424 | } |
| 425 | +div#contacts a:link, div#contacts a:visited { |
| 426 | + color: #dedede; |
| 427 | +} |
| 428 | +div#contacts a:hover, div#contacts a:active { |
| 429 | + color: #ffffff; |
| 430 | +} |
420 | 431 | table.person { |
421 | 432 | margin-bottom: 1em; |
422 | 433 | margin-left: 20px; |
— | — | @@ -503,11 +514,11 @@ |
504 | 515 | } |
505 | 516 | div#instructions { |
506 | 517 | position: absolute; |
507 | | - top: 67px; |
508 | | - left: 480px; |
| 518 | + top: 47px; |
| 519 | + left: 460px; |
509 | 520 | text-align: left; |
510 | 521 | width: 500px; |
511 | | - padding-bottom: 30px; |
| 522 | + padding: 20px; |
512 | 523 | } |
513 | 524 | div#instructions p { |
514 | 525 | text-align:justify; |
Property changes on: branches/wmf/1.18wmf1/extensions/CongressLookup/SpecialCongressLookup.php |
___________________________________________________________________ |
Modified: svn:mergeinfo |
515 | 526 | Merged /trunk/extensions/CongressLookup/SpecialCongressLookup.php:r109485-109488 |
Property changes on: branches/wmf/1.18wmf1/extensions/CongressLookup |
___________________________________________________________________ |
Modified: svn:mergeinfo |
516 | 527 | Merged /trunk/extensions/CongressLookup:r109485-109488 |