A+ submit buttons should include a HTML class aplus-submit, so that the accessibility highlighting works correctly for these buttons.
Additionally, the Submit button should not be inside a <p> element, because it adds extra margin below the button.
|
<p><%= submit_tag t('submissions.new.submit_button'), :class => 'btn btn-primary' %></p> |
The yellow margin should be removed by wrapping the Submit button in a <div> instead.

The button should become fully yellow when navigating to it using the Tab key if the aplus-submit HTML class is added.

A+ submit buttons should include a HTML class
aplus-submit, so that the accessibility highlighting works correctly for these buttons.Additionally, the Submit button should not be inside a
<p>element, because it adds extra margin below the button.rubyric/app/views/submissions/aplus_get.html.erb
Line 33 in 21f06f9
The yellow margin should be removed by wrapping the Submit button in a

<div>instead.The button should become fully yellow when navigating to it using the Tab key if the

aplus-submitHTML class is added.