diff options
author | Gareth Rees <gareth@mysociety.org> | 2015-06-29 16:55:56 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2015-06-29 16:55:56 +0100 |
commit | 29c472a4c5373d5219f3e2dda9839fcafb69aefd (patch) | |
tree | c712fd0034538fdf05dd415312cf56bf84332365 | |
parent | 2cce1794a4d9d2c42b83bab8a693900e8ca23ebc (diff) |
Add box CSS class where missingrelease-0-22-correspondence-box
Missed from a8c6254b
-rw-r--r-- | app/views/request/followup_preview.html.erb | 2 | ||||
-rw-r--r-- | app/views/request/preview.html.erb | 2 | ||||
-rw-r--r-- | app/views/user/rate_limited.html.erb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/request/followup_preview.html.erb b/app/views/request/followup_preview.html.erb index 83978a2f5..6acb44152 100644 --- a/app/views/request/followup_preview.html.erb +++ b/app/views/request/followup_preview.html.erb @@ -17,7 +17,7 @@ <%= fields_for :outgoing_message do |o| %> - <div class="correspondence" id="outgoing-0"> + <div class="correspondence box" id="outgoing-0"> <p class="preview_subject"> <strong><%= _('To:') %></strong> <%=h OutgoingMailer.name_for_followup(@info_request, @incoming_message) %> <br><strong><%= _('Subject:') %></strong> <%= OutgoingMailer.subject_for_followup(@info_request, @outgoing_message, :html => true) %> diff --git a/app/views/request/preview.html.erb b/app/views/request/preview.html.erb index 3a5b8ae87..5d635ab72 100644 --- a/app/views/request/preview.html.erb +++ b/app/views/request/preview.html.erb @@ -22,7 +22,7 @@ <div class="preview-pane"> <%= fields_for :outgoing_message do |o| %> - <div class="correspondence" id="outgoing-0"> + <div class="correspondence box" id="outgoing-0"> <p class="preview_to"> <strong><%= _('To') %></strong> <% if @batch %> diff --git a/app/views/user/rate_limited.html.erb b/app/views/user/rate_limited.html.erb index 54a4e0461..f7778bcb8 100644 --- a/app/views/user/rate_limited.html.erb +++ b/app/views/user/rate_limited.html.erb @@ -9,7 +9,7 @@ <% if @info_request %> <p><%= _("Here is the message you wrote, in case you would like to copy the text and save it for later.") %></p> - <div class="correspondence"> + <div class="correspondence box"> <div class="correspondence_text"><%= @info_request.outgoing_messages[0].get_body_for_html_display %></div> </div> <% end %> |