]> git.openstreetmap.org Git - rails.git/commitdiff
Use CSS rather than HTML attributes for styling.
authorMatt Amos <zerebubuth@gmail.com>
Mon, 26 Jan 2015 18:02:00 +0000 (18:02 +0000)
committerMatt Amos <zerebubuth@gmail.com>
Mon, 26 Jan 2015 18:02:00 +0000 (18:02 +0000)
app/views/layouts/_search.html.erb

index 441ea3212ab8249396c15c7f4d0a89049c25248f..02d6406cffd8a39f1b7093ffd54d5fcc4cfab01c 100644 (file)
@@ -9,7 +9,7 @@
   </form>
 
   <form method="GET" action="<%= directions_path %>" class="directions_form">
-    <div width="100%" align="right" style="height:30px"><%= link_to tag('span', { :class => "icon close"}), root_path, { :title => t('site.search.close_directions_title'), :class => "directions_close" } %></div>
+    <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' %>
@@ -20,7 +20,7 @@
       <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 width="100%" align="right"><%= submit_tag t('site.search.submit_text') %></div>
+    <div style="width:100%; text-align:right;"><%= submit_tag t('site.search.submit_text') %></div>
     <div class="loader_copy" style="display:none;"><div class="loader"><%= image_tag "searching.gif", :style => "vertical-align: middle;" %></div></div>
   </form>
 </div>