diff options
Diffstat (limited to 'app/views/request')
-rw-r--r-- | app/views/request/_bubble.rhtml | 8 | ||||
-rw-r--r-- | app/views/request/_correspondence.rhtml | 2 | ||||
-rw-r--r-- | app/views/request/_followup.rhtml | 8 | ||||
-rw-r--r-- | app/views/request/show.rhtml | 4 |
4 files changed, 14 insertions, 8 deletions
diff --git a/app/views/request/_bubble.rhtml b/app/views/request/_bubble.rhtml index 5ac9d95af..c8ee1dbd8 100644 --- a/app/views/request/_bubble.rhtml +++ b/app/views/request/_bubble.rhtml @@ -1,5 +1,7 @@ <blockquote class="xsnazzy"> - <b class="xb1"></b><b class="xb2"></b><b class="xb3"></b><b class="xb4"></b><b class="xb5"></b><b class="xb6"></b><b class="xb7"></b> + <div> + <strong class="xb1"></strong><strong class="xb2"></strong><strong class="xb3"></strong><strong class="xb4"></strong><strong class="xb5"></strong><strong class="xb6"></strong><strong class="xb7"></strong> + </div> <div class="xboxcontent"> <% if not attachments.nil? and attachments.size > 0 %> <p> <% attachments.each do |a| %> @@ -18,9 +20,11 @@ <% end %> <p><%= body %></p> </div> - <b class="xb7"></b><b class="xb6"></b><b class="xb5"></b><b class="xb4"></b><b class="xb3"></b><b class="xb2"></b><b class="xb1"></b> + <div> + <strong class="xb7"></strong><strong class="xb6"></strong><strong class="xb5"></strong><strong class="xb4"></strong><strong class="xb3"></strong><strong class="xb2"></strong><strong class="xb1"></strong> <em></em> <span class="bubblebit"></span> + </div> </blockquote> diff --git a/app/views/request/_correspondence.rhtml b/app/views/request/_correspondence.rhtml index d283a1acb..d8b8887a8 100644 --- a/app/views/request/_correspondence.rhtml +++ b/app/views/request/_correspondence.rhtml @@ -1,4 +1,4 @@ -<div id="correspondence"> +<div class="correspondence"> <% diff --git a/app/views/request/_followup.rhtml b/app/views/request/_followup.rhtml index 8266661c9..3f6f5322d 100644 --- a/app/views/request/_followup.rhtml +++ b/app/views/request/_followup.rhtml @@ -7,7 +7,7 @@ </h2> <p>Use this if the public body has asked for clarification of - your request. + your request.</p> <% form_for(:outgoing_message, @outgoing_message) do |o| %> <p> @@ -19,8 +19,10 @@ to it, will also be displayed publically on this website. </p> - <%= hidden_field_tag 'submitted_followup', 1 %> - <%= submit_tag "Send >>" %> + <p> + <%= hidden_field_tag 'submitted_followup', 1 %> + <%= submit_tag "Send >>" %> + </p> <% end %> <p> diff --git a/app/views/request/show.rhtml b/app/views/request/show.rhtml index f10e36ccd..fd2455475 100644 --- a/app/views/request/show.rhtml +++ b/app/views/request/show.rhtml @@ -1,7 +1,7 @@ <% @title = h(@info_request.title) %> <% if @info_request.awaiting_description %> - <div id="describe_state_form"> + <div class="describe_state_form"> <%= render :partial => 'describe_state' %> </div> <% end %> @@ -64,7 +64,7 @@ </div> <% if @info_request.awaiting_description %> - <div id="describe_state_form"> + <div class="describe_state_form"> <%= render :partial => 'describe_state' %> </div> <% end %> |