Increase font size in directions controls
This commit is contained in:
parent
22a6d24857
commit
1e6db7b52c
1 changed files with 5 additions and 5 deletions
|
@ -38,7 +38,7 @@
|
|||
<%= image_tag "marker-green.png", :class => "routing_marker mx-auto d-block", :data => { :type => "from" }, :draggable => "true" %>
|
||||
</div>
|
||||
<div class="col">
|
||||
<%= text_field_tag "route_from", params[:from], :placeholder => t("site.search.from"), :autocomplete => "on", :class => "form-control form-control-sm", :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="row gx-2 m-1">
|
||||
|
@ -46,20 +46,20 @@
|
|||
<%= image_tag "marker-red.png", :class => "routing_marker mx-auto d-block", :data => { :type => "to" }, :draggable => "true" %>
|
||||
</div>
|
||||
<div class="col">
|
||||
<%= text_field_tag "route_to", params[:to], :placeholder => t("site.search.to"), :autocomplete => "on", :class => "form-control form-control-sm", :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="row gx-2 m-1">
|
||||
<div class="col offset-1">
|
||||
<select class="routing_engines form-select form-select-sm" name="routing_engines"></select>
|
||||
<select class="routing_engines form-select py-1 px-2" name="routing_engines"></select>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<%= submit_tag t("site.search.submit_text"), :class => "routing_go btn btn-sm btn-primary", :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="row gx-2 m-1">
|
||||
<div class="col offset-1">
|
||||
<button class="btn btn-sm btn-link 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>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue