diff options
| -rw-r--r-- | app/assets/stylesheets/responsive/_lists_layout.scss | 6 | ||||
| -rw-r--r-- | app/views/public_body/_body_listing_single.html.erb | 5 | 
2 files changed, 9 insertions, 2 deletions
| diff --git a/app/assets/stylesheets/responsive/_lists_layout.scss b/app/assets/stylesheets/responsive/_lists_layout.scss index 69237ae91..6a874e8fe 100644 --- a/app/assets/stylesheets/responsive/_lists_layout.scss +++ b/app/assets/stylesheets/responsive/_lists_layout.scss @@ -81,4 +81,8 @@    }  } - +/* .make-request-quick-button displays in the typeahead search results in the 'make request' process */ +.make-request-quick-button { +  margin-bottom: 1em; +  margin-top: -0.5em; +} diff --git a/app/views/public_body/_body_listing_single.html.erb b/app/views/public_body/_body_listing_single.html.erb index 91a07d09c..2aaf02e6e 100644 --- a/app/views/public_body/_body_listing_single.html.erb +++ b/app/views/public_body/_body_listing_single.html.erb @@ -1,4 +1,4 @@ -<% if @highlight_words.nil?  +<% if @highlight_words.nil?        @highlight_words = []     end %> @@ -34,5 +34,8 @@              <%= _("Added on {{date}}", :date => simple_date(public_body.created_at)) %>.          </span>      </span> +    <div class="make-request-quick-button"> +        <a class="link_button_green" href="#">Make a request</a> +    </div>  </div> | 
