mantisbt-plugins / timetracking

Other
27 stars 43 forks source link

css on "add" button #30

Closed fhaut closed 6 years ago

fhaut commented 6 years ago

Apply css on "Add button" to apply the standard mantis 2.0 web interface.

on TimeTracking.php, line 156

who is :

<td><input name="<?php echo plugin_lang_get( 'submit' ) ?>" type="submit" value="<?php echo plugin_lang_get( 'submit' ) ?>" /></td>

change to:

<td><input class="btn btn-primary btn-sm btn-white btn-round" name="<?php echo plugin_lang_get( 'submit' ) ?>" type="submit" value="<?php echo plugin_lang_get( 'submit' ) ?>" /></td>

dregad commented 6 years ago

Next time, please submit your patch as a pull request instead, it will make things a lot easier. Thanks for your contribution, and your understanding.