aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/assets/stylesheets/responsive/_new_request_layout.scss3
-rw-r--r--app/views/request/select_authority.html.erb6
2 files changed, 8 insertions, 1 deletions
diff --git a/app/assets/stylesheets/responsive/_new_request_layout.scss b/app/assets/stylesheets/responsive/_new_request_layout.scss
index 5e8a4fa22..9d7c0b047 100644
--- a/app/assets/stylesheets/responsive/_new_request_layout.scss
+++ b/app/assets/stylesheets/responsive/_new_request_layout.scss
@@ -11,6 +11,9 @@
@include lte-ie7 {
width: 27.125em;
}
+ #query {
+ width: 80%;
+ }
}
}
diff --git a/app/views/request/select_authority.html.erb b/app/views/request/select_authority.html.erb
index 6c17a0d15..409228297 100644
--- a/app/views/request/select_authority.html.erb
+++ b/app/views/request/select_authority.html.erb
@@ -23,7 +23,11 @@
(<a href="{{url}}">why?</a>).), :url => (help_about_path(:anchor => 'whybother_them')).html_safe) %>
</p>
- <%= text_field_tag :query, params[:query], { :size => 30, :title => "type your search term here" } %>
+ <%= text_field_tag :query,
+ params[:query],
+ { :size => 30,
+ :title => _('type your search term here'),
+ :placeholder => _('e.g. Ministry of Defence') } %>
<%= hidden_field_tag :bodies, 1 %>
<%= submit_tag _('Search') %>
</div>