Skip to content

Commit

Permalink
Merge pull request #3305 from projectblacklight/3300-bs5-button
Browse files Browse the repository at this point in the history
make input-group-append work with bs4 and bs5
  • Loading branch information
corylown authored Nov 27, 2024
2 parents fce6102 + 0bb7fee commit 84e8c52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/spotlight/bulk_updates/_upload.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="input-group">
<%= file_field_tag :file, class: 'form-control', accept: '.csv,text/csv', 'aria-described-by': 'bulk-update-form-help' %>
<div class="input-group-append">
<%= f.submit t('.submit'), class: 'btn btn-primary' %>
<%= f.submit t('.submit'), class: 'btn btn-primary rounded-0 rounded-end' %>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/spotlight/translations/_import.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<%= file_field_tag :file, class: 'form-control' %>
<%= hidden_field_tag :tab, 'import', id: nil %>
<div class="input-group-append">
<%= f.submit t(:'.import_submit'), class: 'btn btn-primary' %>
<%= f.submit t(:'.import_submit'), class: 'btn btn-primary rounded-0 rounded-end' %>
</div>
</div>
</div>
Expand Down

0 comments on commit 84e8c52

Please sign in to comment.