]> git.openstreetmap.org Git - rails.git/commitdiff
Move routing "Go" button up alongside the dropdown
authorTom Hughes <tom@compton.nu>
Sun, 1 Feb 2015 12:15:49 +0000 (12:15 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 1 Feb 2015 12:58:08 +0000 (12:58 +0000)
app/assets/stylesheets/common.scss
app/views/layouts/_search.html.erb

index ff16ad66b3a78371d922f3ecabb44871cd5b813a..b7ba464c0cdea8296ebcc0c6c1b1d58f399cda7a 100644 (file)
@@ -990,6 +990,11 @@ header .search_forms,
     margin: 0px 0px 5px 25px;
   }
 
+  input.routing_go {
+    min-width: 100px;
+    float: right;
+  }
+
   div.line {
     width: 100%;
     margin: 0px 0px 5px 0px;
index 02d6406cffd8a39f1b7093ffd54d5fcc4cfab01c..065190bd5740d8e1d98688581ce859c3b20cb798 100644 (file)
     <div style="width:100%; text-align:right; height:30px;"><%= link_to tag('span', { :class => "icon close"}), root_path, { :title => t('site.search.close_directions_title'), :class => "directions_close" } %></div>
 
     <div class="line">
-      <%= image_tag "marker-green.png", :class => 'routing_marker', :id => 'marker_from', :draggable => 'true' %>
+      <%= image_tag "marker-green.png", :class => "routing_marker", :id => "marker_from", :draggable => "true" %>
       <span class="force_width"><%= text_field_tag "route_from", params[:from], :placeholder => t('site.search.from') %></span>
     </div>
     <div class="line">
-      <%= image_tag "marker-red.png"  , :class => 'routing_marker', :id => 'marker_to'  , :draggable => 'true' %>
+      <%= image_tag "marker-red.png", :class => "routing_marker", :id => "marker_to", :draggable => "true" %>
       <span class="force_width"><%= text_field_tag "route_to"  , params[:to]  , :placeholder => t('site.search.to') %></span>
     </div>
-    <select class='routing_engines' name='routing_engines'></select>
-    <div style="width:100%; text-align:right;"><%= submit_tag t('site.search.submit_text') %></div>
+    <div class="line">
+      <select class="routing_engines" name="routing_engines"></select>
+      <%= submit_tag t('site.search.submit_text'), :class => "routing_go" %>
+    </div>
+
     <div class="loader_copy" style="display:none;"><div class="loader"><%= image_tag "searching.gif", :style => "vertical-align: middle;" %></div></div>
   </form>
 </div>