]> git.openstreetmap.org Git - rails.git/commitdiff
Replace custom css class with bootstrap inline utility
authorAndy Allan <git@gravitystorm.co.uk>
Thu, 19 Dec 2019 18:18:52 +0000 (19:18 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Thu, 19 Dec 2019 18:31:52 +0000 (19:31 +0100)
This has actually been broken since the controller was renamed,
but nobody noticed.

app/assets/stylesheets/common.scss
app/views/traces/show.html.erb

index bd0b574e5ddc0516b3475bd211141b679dcc40f9..5abd817f85436f7a0515282084a0027de86722cf 100644 (file)
@@ -1496,14 +1496,6 @@ tr.turn:hover {
   }
 }
 
-/* Rules for the trace view */
-
-.trace-show {
-  .geo {
-    display: inline;
-  }
-}
-
 /* Rules for the new trace form */
 
 #new_trace {
index a1c38cab67361db9343bbd698638033554400da2..728b29c45fee0868af0ba14a891be4d5b3904a1c 100644 (file)
@@ -25,7 +25,7 @@
     <td><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %></td></tr>
   <tr>
     <td><%= t ".start_coordinates" %></td>
-    <td><div class="geo"><span class="latitude"><%= @trace.latitude %></span>; <span class="longitude"><%= @trace.longitude %></span></div> (<%= link_to t(".map"), :controller => "site", :action => "index", :mlat => @trace.latitude, :mlon => @trace.longitude, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %> / <%= link_to t(".edit"), :controller => "site", :action => "edit", :gpx => @trace.id, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %>)</td>
+    <td><div class="d-inline"><span class="latitude"><%= @trace.latitude %></span>; <span class="longitude"><%= @trace.longitude %></span></div> (<%= link_to t(".map"), :controller => "site", :action => "index", :mlat => @trace.latitude, :mlon => @trace.longitude, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %> / <%= link_to t(".edit"), :controller => "site", :action => "edit", :gpx => @trace.id, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %>)</td>
   </tr>
   <% end %>
   <tr>