diff --git a/admin/roles/assign.html b/admin/roles/assign.html index 8720db3cc69..93d8d8e5e05 100755 --- a/admin/roles/assign.html +++ b/admin/roles/assign.html @@ -46,9 +46,8 @@ </label> <?php check_theme_arrows(); ?> <p class="arrow_button"> - <input name="add" id="add" type="submit" value="<?php echo ' '.$THEME->larrow.' '.get_string('add'); ?>" title="<?php print_string('add'); ?>" /> - <br /> - <input name="remove" id="remove" type="submit" value="<?php echo ' '.$THEME->rarrow.' '.get_string('remove'); ?>" title="<?php print_string('remove'); ?>" /> + <input name="add" id="add" type="submit" value="<?php echo ' '.$THEME->larrow.' '.get_string('add'); ?>" title="<?php print_string('add'); ?>" /><br /> + <input name="remove" id="remove" type="submit" value="<?php echo ' '.get_string('remove'). ' '.$THEME->rarrow.' '; ?>" title="<?php print_string('remove'); ?>" /> </p> </td> <td valign="top"> diff --git a/theme/standard/styles_layout.css b/theme/standard/styles_layout.css index 642643f9836..8229aa75adb 100644 --- a/theme/standard/styles_layout.css +++ b/theme/standard/styles_layout.css @@ -4285,3 +4285,13 @@ wikiadminactions { padding-left: 7px; float: left; } +#add, #remove{ + width:100px; + height:35px +} +#add{ + text-align:left; +} +#remove{ + text-align:right; +}