From: Matt Amos Date: Mon, 10 Nov 2014 19:36:43 +0000 (+0000) Subject: Added some vertical space in the routing text input boxes. X-Git-Tag: live~4233^2~13^2~2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/4734b9ce5dec2233eb2ae8b3ce0683033bd26757 Added some vertical space in the routing text input boxes. --- diff --git a/app/assets/stylesheets/common.css.scss b/app/assets/stylesheets/common.css.scss index 39519b81a..fb879d375 100644 --- a/app/assets/stylesheets/common.css.scss +++ b/app/assets/stylesheets/common.css.scss @@ -978,6 +978,16 @@ header .search_forms, padding-right: 25px; display: block; } + + select.routing_engines { + min-height: 30px; + margin: 0px 0px 5px 25px; + } + + div.line { + width: 100%; + margin: 0px 0px 5px 0px; + } } /* Rules for the map key which appears in the popout sidebar */ diff --git a/app/views/layouts/_search.html.erb b/app/views/layouts/_search.html.erb index 55b5650b2..c9ae72477 100644 --- a/app/views/layouts/_search.html.erb +++ b/app/views/layouts/_search.html.erb @@ -11,11 +11,11 @@
<%= link_to image_tag('search.png', :class => 'button'), root_path, { :class => "button", :title => t('site.search.close_directions_title') } %>
-
+
<%= image_tag "marker-green.png", :class => 'routing_marker', :id => 'marker_from', :draggable => 'true' %> <%= text_field_tag "route_from", params[:from], :placeholder => t('site.search.from') %>
-
+
<%= image_tag "marker-red.png" , :class => 'routing_marker', :id => 'marker_to' , :draggable => 'true' %> <%= text_field_tag "route_to" , params[:to] , :placeholder => t('site.search.to') %>