diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss
index e27cf5622..149dfaedc 100644
--- a/app/assets/stylesheets/application.scss
+++ b/app/assets/stylesheets/application.scss
@@ -287,8 +287,7 @@ th {
}
.actions .btn-previous {
- background-color: #666666ff;
- color: white;
+ background-color: lightgray;
margin-right: 0.5em;
}
diff --git a/app/views/works_wizard/attachment_select.html.erb b/app/views/works_wizard/attachment_select.html.erb
index ff907201c..5ddf563d9 100644
--- a/app/views/works_wizard/attachment_select.html.erb
+++ b/app/views/works_wizard/attachment_select.html.erb
@@ -13,9 +13,9 @@
<%= @work.files_location_other? ? "checked" : "" %>>more than 100MB or I am unable to upload.
- <%= link_to "Previous", work_readme_select_path(@work, wizard: true), class: "btn btn-secondary" %>
- <%= form.button 'Save', type: 'submit', name: 'save_only', value: 'true', class: "btn btn-save wizard-next-button" %>
<%= submit_tag "Next", class: "btn btn-primary wizard-next-button" %>
+ <%= form.button 'Save', type: 'submit', name: 'save_only', value: 'true', class: "btn btn-save wizard-next-button" %>
+ <%= link_to "Previous", work_readme_select_path(@work, wizard: true), class: "btn btn-previous wizard-next-button" %>
<% end %>
diff --git a/app/views/works_wizard/file_other.html.erb b/app/views/works_wizard/file_other.html.erb
index 58e1a1109..bbcefd5c8 100644
--- a/app/views/works_wizard/file_other.html.erb
+++ b/app/views/works_wizard/file_other.html.erb
@@ -13,8 +13,8 @@
placeholder="Where and how we may access your files"><%= @work.location_notes %>
<%= submit_tag "Next", class: "btn btn-primary wizard-next-button" %>
- <%= form.button 'Save', type: 'submit', name: 'save_only', value: 'true', class: "btn btn-primary wizard-next-button" %>
- <%= link_to "Previous", work_attachment_select_url(@work, wizard: true), class: "btn btn-secondary" %>
+ <%= form.button 'Save', type: 'submit', name: 'save_only', value: 'true', class: "btn btn-save wizard-next-button" %>
+ <%= link_to "Previous", work_attachment_select_url(@work, wizard: true), class: "btn btn-previous wizard-next-button" %>
<% end %>
diff --git a/app/views/works_wizard/file_upload.html.erb b/app/views/works_wizard/file_upload.html.erb
index b6647dc29..918bd85d6 100644
--- a/app/views/works_wizard/file_upload.html.erb
+++ b/app/views/works_wizard/file_upload.html.erb
@@ -9,7 +9,7 @@
<%= f.submit(t('works.form.file_upload.continue'), class: "btn btn-primary wizard-next-button", id: 'file-upload') %>
<%= f.button 'Save', type: 'submit', name: 'save_only', value: 'true', class: "btn btn-save wizard-next-button" %>
- <%= link_to t('works.form.file_upload.go_back'), work_attachment_select_url(@work, wizard: true), class: "btn btn-secondary" %>
+ <%= link_to t('works.form.file_upload.go_back'), work_attachment_select_url(@work, wizard: true), class: "btn btn-previous wizard-next-button" %>
<% end %>
diff --git a/app/views/works_wizard/review.html.erb b/app/views/works_wizard/review.html.erb
index 45fd8bf36..7e94281d8 100644
--- a/app/views/works_wizard/review.html.erb
+++ b/app/views/works_wizard/review.html.erb
@@ -12,7 +12,7 @@
<%= submit_tag "Grant License and Complete", class: "btn btn-primary wizard-next-button" %>
<%= form.button 'Save', type: 'submit', name: 'save_only', value: 'true', class: "btn btn-save wizard-next-button" %>
- <%= link_to "Previous", file_location_url , class: "btn btn-secondary" %>
+ <%= link_to "Previous", file_location_url , class: "btn btn-previous wizard-next-button" %>
<% end %>