"MDL-14932, accessibility imporvement, see tracker, merged from MOODLE_19_STABLE"

This commit is contained in:
dongsheng 2008-05-28 01:48:25 +00:00
parent 7f2f55a0e1
commit 5e1062a6b2
2 changed files with 12 additions and 3 deletions

View File

@ -46,9 +46,8 @@
</label>
<?php check_theme_arrows(); ?>
<p class="arrow_button">
<input name="add" id="add" type="submit" value="<?php echo '&nbsp;'.$THEME->larrow.' &nbsp; &nbsp; '.get_string('add'); ?>" title="<?php print_string('add'); ?>" />
<br />
<input name="remove" id="remove" type="submit" value="<?php echo '&nbsp; '.$THEME->rarrow.' &nbsp; &nbsp; '.get_string('remove'); ?>" title="<?php print_string('remove'); ?>" />
<input name="add" id="add" type="submit" value="<?php echo '&nbsp;&nbsp;&nbsp;'.$THEME->larrow.'&nbsp;'.get_string('add'); ?>" title="<?php print_string('add'); ?>" /><br />
<input name="remove" id="remove" type="submit" value="<?php echo '&nbsp;&nbsp;&nbsp;'.get_string('remove'). '&nbsp;'.$THEME->rarrow.'&nbsp;'; ?>" title="<?php print_string('remove'); ?>" />
</p>
</td>
<td valign="top">

View File

@ -4285,3 +4285,13 @@ wikiadminactions {
padding-left: 7px;
float: left;
}
#add, #remove{
width:100px;
height:35px
}
#add{
text-align:left;
}
#remove{
text-align:right;
}