This saves every header, list, paragraph etc having to sort out their own padding. The couple of instances where we want edge-to-edge can be acheived using the negative margin spacing utilities. The padding is based on $spacer so that it can be adjusted automatically via bootstrap configuration. This also means that we can remove many (mis-)uses of the browse-section class, which is only supposed to be for cases where there are multiple browse-sections in sequence (e.g. multiple nodes in the node history browse pages).
10 lines
378 B
Text
10 lines
378 B
Text
<% set_title(@params[:query]) %>
|
|
|
|
<%= render "sidebar_header", :title => t("site.sidebar.search_results") %>
|
|
|
|
<% @sources.each do |source| %>
|
|
<h4><%= t(".title.#{source}_html") %></h4>
|
|
<div class="search_results_entry mx-n3" data-href="<%= url_for @params.merge(:action => "search_#{source}") %>">
|
|
<%= image_tag "searching.gif", :class => "loader" %>
|
|
</div>
|
|
<% end %>
|