Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/css/TwoStepTwoColumnPremium.css |
— | — | @@ -5,6 +5,16 @@ |
6 | 6 | font-size: 1.2em; |
7 | 7 | font-weight: bold; |
8 | 8 | } |
| 9 | +#premium-size { |
| 10 | + margin: 0.2em 0; |
| 11 | +} |
| 12 | +#premium-language { |
| 13 | + text-align: center; |
| 14 | + background-color: #162b46; |
| 15 | + width:160px; |
| 16 | + height: 100px; |
| 17 | + margin: 0 auto; |
| 18 | +} |
9 | 19 | |
10 | 20 | .payflow-cc-form-section { |
11 | 21 | float: none; |
Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/TwoStepTwoColumnPremium.php |
— | — | @@ -24,7 +24,13 @@ |
25 | 25 | $form .= Xml::openElement( 'div', array( 'id' => 'premium-confirmation' ) ); |
26 | 26 | $form .= Xml::element( 'img', array( 'src' => $wgScriptPath . "/extensions/DonationInterface/payflowpro_gateway/includes/Wikipedia-ten-tshirt-back.jpg", 'width' => '300', 'height' => '300' ) ) . "<br/>"; |
27 | 27 | $form .= Xml::openElement( 'div', array( 'id' => 'premium-values' ) ); |
| 28 | + $form .= Xml::openElement( 'div', array( 'id' => 'premium-size' ) ); |
28 | 29 | $form .= wfMsg( 'payflowpro_gateway-shirt-size-2', $wgRequest->getText( 'size' ) ); |
| 30 | + $form .= Xml::closeElement( 'div' ); // close div#premium-size |
| 31 | + $form .= wfMsg( 'payflowpro_gateway-on-the-back' ) . "<br/>"; |
| 32 | + $form .= Xml::openElement( 'div', array( 'id' => 'premium-language' ) ); |
| 33 | + $form .= Xml::element( 'img', array( 'src' => $wgScriptPath . "/extensions/DonationInterface/payflowpro_gateway/includes/".$wgRequest->getText( 'premium_language' )."-wordmark.png", 'width' => '150', 'height' => '90' ) ); |
| 34 | + $form .= Xml::closeElement( 'div' ); // close div#premium-language |
29 | 35 | $form .= Xml::closeElement( 'div' ); // close div#premium-values |
30 | 36 | $form .= Xml::closeElement( 'div' ); // close div#premium-confirmation |
31 | 37 | |