Commit efb444703e860a8de6f6318a0d747976a4649fbd

Authored by Jarrett Jordaan
1 parent e1f9b2ab

PT-2280465: QA changes added.

Committed by: Jarrett Jordaan

Reviewed by: Megan Watson
setup/wizard/resources/css/wizard.css
... ... @@ -54,6 +54,7 @@ th {
54 54  
55 55 td {
56 56 padding: 2px 5px;
  57 + width: 190px;
57 58 }
58 59  
59 60 select {
... ... @@ -565,7 +566,7 @@ td.dir_description {
565 566 }
566 567  
567 568 .registration_select {
568   - width: 270px;
  569 + width: 400px;
569 570 }
570 571  
571 572 .description_complete {
... ...
setup/wizard/templates/registration.tpl
... ... @@ -24,14 +24,14 @@
24 24 <div id="step_content_<?php echo $step_name; ?>" class="step">
25 25 <span class="error" id="reg_error"></span>
26 26 <?php $rowspan = "8";?>
27   - <?php if(WINDOWS_OS) $input_width = 40; else { $input_width = 28; } ?>
  27 + <?php if(WINDOWS_OS) $input_width = 40; else { $input_width = 42; } ?>
28 28 <table class="registration_template">
29 29 <tr>
30 30 <td><label for='first'>First Name</label></td>
31   - <td rowspan='<?php echo $rowspan; ?>' width='5%'>&nbsp;</td>
32   - <td><input value="<?php echo $first_name; ?>" name='submitted[first_name]' id='first' size='<?php echo $input_width; ?>' style="float:left;"/></td>
33   - <td rowspan='<?php echo $rowspan; ?>' width='5%'>&nbsp;</td>
34   - <td rowspan='<?php echo $rowspan; ?>'> <?php echo $html->image('dropbox.png'); ?> </td>
  31 +<!-- <td rowspan='<?php //echo $rowspan; ?>' width='5%'>&nbsp;</td>-->
  32 + <td><input value="<?php //echo $first_name; ?>" name='submitted[first_name]' id='first' size='<?php echo $input_width; ?>' style="float:left;"/></td>
  33 +<!-- <td rowspan='<?php //echo $rowspan; ?>' width='5%'>&nbsp;</td>-->
  34 +<!-- <td rowspan='<?php //echo $rowspan; ?>'> <?php //echo $html->image('dropbox.png'); ?> </td>-->
35 35 </tr>
36 36 <tr>
37 37 <td><label for='last'>Last Name</label></td>
... ... @@ -102,8 +102,8 @@
102 102 </td>
103 103 </tr>
104 104 <tr>
105   - <td><label for='opt_in'>Commumity updates</label></td>
106   - <td><input type='checkbox' id="opt_in" name='opt_in' value='enable' checked style="float:right;"/></td>
  105 + <td><label for='opt_in'>Receive Community Updates</label></td>
  106 + <td><input type='checkbox' id="opt_in" name='opt_in' value='enable' checked style="float:left;"/></td>
107 107  
108 108 </tr>
109 109 </table>
... ...