Use flex in routing form for vertical gaps
This commit is contained in:
parent
6ae4e53f45
commit
411f0ab665
1 changed files with 20 additions and 18 deletions
|
@ -33,27 +33,29 @@
|
||||||
<form method="GET" action="<%= directions_path %>" class="directions_form bg-body-secondary pb-3">
|
<form method="GET" action="<%= directions_path %>" class="directions_form bg-body-secondary pb-3">
|
||||||
<div class="d-flex flex-row-reverse px-3 py-3"><button type="button" class="btn-close" aria-label="<%= t("javascripts.close") %>"></button></div>
|
<div class="d-flex flex-row-reverse px-3 py-3"><button type="button" class="btn-close" aria-label="<%= t("javascripts.close") %>"></button></div>
|
||||||
|
|
||||||
<div class="d-flex my-1 mx-2 gap-2 align-items-center">
|
<div class="d-flex flex-column mx-2 gap-1">
|
||||||
|
<div class="d-flex gap-2 align-items-center">
|
||||||
<div class="routing_marker_column flex-shrink-0">
|
<div class="routing_marker_column flex-shrink-0">
|
||||||
<%= image_tag "marker-green.png", :class => "img-fluid", :data => { :type => "from" }, :draggable => "true" %>
|
<%= image_tag "marker-green.png", :class => "img-fluid", :data => { :type => "from" }, :draggable => "true" %>
|
||||||
</div>
|
</div>
|
||||||
<%= text_field_tag "route_from", params[:from], :placeholder => t("site.search.from"), :autocomplete => "on", :class => "form-control py-1 px-2", :dir => "auto" %>
|
<%= text_field_tag "route_from", params[:from], :placeholder => t("site.search.from"), :autocomplete => "on", :class => "form-control py-1 px-2", :dir => "auto" %>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex my-1 mx-2 gap-2 align-items-center">
|
<div class="d-flex gap-2 align-items-center">
|
||||||
<div class="routing_marker_column flex-shrink-0">
|
<div class="routing_marker_column flex-shrink-0">
|
||||||
<%= image_tag "marker-red.png", :class => "img-fluid", :data => { :type => "to" }, :draggable => "true" %>
|
<%= image_tag "marker-red.png", :class => "img-fluid", :data => { :type => "to" }, :draggable => "true" %>
|
||||||
</div>
|
</div>
|
||||||
<%= text_field_tag "route_to", params[:to], :placeholder => t("site.search.to"), :autocomplete => "on", :class => "form-control py-1 px-2", :dir => "auto" %>
|
<%= text_field_tag "route_to", params[:to], :placeholder => t("site.search.to"), :autocomplete => "on", :class => "form-control py-1 px-2", :dir => "auto" %>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex my-1 mx-2 gap-2 align-items-center">
|
<div class="d-flex gap-2 align-items-center">
|
||||||
<div class="routing_marker_column flex-shrink-0"></div>
|
<div class="routing_marker_column flex-shrink-0"></div>
|
||||||
<select class="routing_engines form-select py-1 px-2" name="routing_engines"></select>
|
<select class="routing_engines form-select py-1 px-2" name="routing_engines"></select>
|
||||||
<%= submit_tag t("site.search.submit_text"), :class => "routing_go btn btn-primary py-1 px-2", :data => { :disable_with => false } %>
|
<%= submit_tag t("site.search.submit_text"), :class => "routing_go btn btn-primary py-1 px-2", :data => { :disable_with => false } %>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex my-1 mx-2 gap-2 align-items-center">
|
<div class="d-flex gap-2 align-items-center">
|
||||||
<div class="routing_marker_column flex-shrink-0"></div>
|
<div class="routing_marker_column flex-shrink-0"></div>
|
||||||
<button class="btn btn-link py-1 px-2 reverse_directions"><%= t("site.search.reverse_directions_text") %></button>
|
<button class="btn btn-link py-1 px-2 reverse_directions"><%= t("site.search.reverse_directions_text") %></button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="loader_copy d-none">
|
<div class="loader_copy d-none">
|
||||||
<div class="text-center loader">
|
<div class="text-center loader">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue