]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/_search.html.erb
Decrease padding between close button and inputs in directions form
[rails.git] / app / views / layouts / _search.html.erb
1 <% search_query = if params[:query]
2                     params[:query]
3                   elsif params[:lat] && params[:lon]
4                     "#{params[:lat]}, #{params[:lon]}"
5                   end %>
6
7 <div class="search_forms">
8   <form method="GET" action="<%= search_path %>" class="search_form bg-body-secondary px-1 py-2">
9     <div class="row gx-2 mx-0">
10       <div class="col">
11         <div class="input-group flex-nowrap">
12           <%= text_field_tag "query", search_query, :placeholder => t("site.search.search"), :autofocus => autofocus, :autocomplete => "on", :class => "form-control z-0 py-1 px-2", :dir => "auto" %>
13           <div class="input-group-text border-start-0 p-0 position-relative">
14             <%= button_tag t("site.search.where_am_i"), :type => "button", :class => "describe_location position-absolute end-0 top-0 bottom-0 m-1 btn btn-outline-primary border-0 p-1 bg-transparent text-primary link-body-emphasis link-opacity-100-hover", :title => t("site.search.where_am_i_title") %>
15           </div>
16           <%= button_tag :class => "btn btn-primary p-1", :title => t("site.search.submit_text") do %>
17             <svg width="24" height="20">
18               <circle cx="13" cy="7" r="6.5" fill="#fff8" stroke="#fff" />
19               <path d="M9.75 12.629 A6.5 6.5 0 0 1 7.371 10.25" fill="none" stroke="#fff" stroke-width="1.5" />
20               <line x1="1" y1="19" x2="1.5" y2="18.5" stroke="#fff8" stroke-width="2" />
21               <line x1="1.5" y1="18.5" x2="6" y2="14" stroke="#fff" stroke-width="2.5" />
22               <line x1="6" y1="14" x2="6.5" y2="13.5" stroke="#fff8" stroke-width="2" />
23               <line x1="6.5" y1="13.5" x2="8.5" y2="11.5" stroke="#fff" stroke-width="1.5" />
24             </svg>
25           <% end %>
26         </div>
27       </div>
28       <div class="col-auto">
29         <%= link_to directions_path, :class => "btn btn-primary p-1 switch_link", :title => t("site.search.get_directions_title") do %>
30           <svg width="28" height="24" viewBox="0 -2 28 24" class="align-bottom">
31             <path d="M11.5 9.5 v-3h3v-1l-5 -5l-5 5v1h3v6" fill="none" stroke="#fff8" />
32             <path d="M7.5 19.5h4v-5a1 1 0 0 1 1 -1h5v3h1l5 -5l-5 -5h-1v3h-6a4 4 0 0 0 -4 4z" fill="#fff8" stroke="#fff" />
33           </svg>
34         <% end %>
35       </div>
36     </div>
37   </form>
38
39   <form method="GET" action="<%= directions_path %>" class="directions_form bg-body-secondary pb-2">
40     <div class="d-flex flex-row-reverse px-3 pt-3 pb-1"><button type="button" class="btn-close" aria-label="<%= t("javascripts.close") %>"></button></div>
41
42     <div class="d-flex flex-column mx-2 gap-1">
43       <div class="d-flex gap-1 align-items-center">
44         <div class="d-flex flex-column gap-1 flex-grow-1">
45           <div class="d-flex gap-2 align-items-center">
46             <div class="routing_marker_column flex-shrink-0">
47               <%= image_tag "marker-green.png", :class => "img-fluid", :data => { :type => "from" }, :draggable => "true" %>
48             </div>
49             <%= text_field_tag "route_from", params[:from], :placeholder => t("site.search.from"), :autocomplete => "on", :class => "form-control py-1 px-2", :dir => "auto" %>
50           </div>
51           <div class="d-flex gap-2 align-items-center">
52             <div class="routing_marker_column flex-shrink-0">
53               <%= image_tag "marker-red.png", :class => "img-fluid", :data => { :type => "to" }, :draggable => "true" %>
54             </div>
55             <%= text_field_tag "route_to", params[:to], :placeholder => t("site.search.to"), :autocomplete => "on", :class => "form-control py-1 px-2", :dir => "auto" %>
56           </div>
57         </div>
58         <div>
59           <button type="button" class="reverse_directions btn btn-outline-secondary border-0 p-2" title="<%= t("site.search.reverse_directions_text") %>">
60             <svg class="d-block" width="20" height="20" viewBox="-10 -10 20 20" fill="none" stroke="currentColor" stroke-width="2">
61               <path d="m-4 -2 0 10 m-4 -4 4 4 4 -4" />
62               <path d="m4 2 0 -10 m4 4 -4 -4 -4 4" />
63             </svg>
64           </button>
65         </div>
66       </div>
67       <div class="d-flex gap-2 align-items-center">
68         <div class="routing_marker_column flex-shrink-0"></div>
69         <select class="routing_engines form-select py-1 px-2" name="routing_engines"></select>
70         <%= submit_tag t("site.search.submit_text"), :class => "routing_go btn btn-primary py-1 px-2", :data => { :disable_with => false } %>
71       </div>
72     </div>
73
74     <div class="loader_copy d-none">
75       <div class="text-center loader">
76         <div class="spinner-border" role="status">
77           <span class="visually-hidden"><%= t("browse.start_rjs.loading") %></span>
78         </div>
79       </div>
80     </div>
81   </form>
82 </div>