]> git.openstreetmap.org Git - rails.git/commitdiff
Move buttons in front of tabs to stack before them on small screens
authorAnton Khorev <tony29@yandex.ru>
Wed, 3 Apr 2024 12:59:46 +0000 (15:59 +0300)
committerAnton Khorev <tony29@yandex.ru>
Mon, 8 Apr 2024 11:07:27 +0000 (14:07 +0300)
app/views/traces/index.html.erb

index b696ef3fd91e475e34b2fc91d078c945a7cdb819..6e27ac7e4e5a38e11434809a89228e7cc905a065 100644 (file)
     </ul>
   </nav>
 
-  <div class="d-flex align-items-end">
+  <div class="d-flex flex-column flex-md-row-reverse align-items-md-end">
+    <div class="pb-1 ps-1 d-flex flex-wrap flex-shrink-0 gap-1 justify-content-end">
+      <%= link_to({ :action => :georss, :display_name => @target_user&.display_name, :tag => params[:tag] },
+                  { :class => "btn btn-secondary btn-sm" }) do %>
+        <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" class="align-text-bottom">
+          <circle cx="2" cy="14" r="2" fill="white" />
+          <path d="M 8 14 a 6 6 0 0 0 -6 -6 M 14 14 a 12 12 0 0 0 -12 -12" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" />
+        </svg><% end -%>
+      <%= link_to t(".upload_trace"), new_trace_path, :class => "btn btn-secondary btn-sm" %>
+    </div>
+
     <div class="flex-grow-1">
       <ul class="nav nav-tabs">
         <% if @target_user.blank? %>
         <% end %>
       </ul>
     </div>
-
-    <div class="pb-1 ps-1 d-flex flex-wrap flex-shrink-0 gap-1 justify-content-end">
-      <%= link_to({ :action => :georss, :display_name => @target_user&.display_name, :tag => params[:tag] },
-                  { :class => "btn btn-secondary btn-sm" }) do %>
-        <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" class="align-text-bottom">
-          <circle cx="2" cy="14" r="2" fill="white" />
-          <path d="M 8 14 a 6 6 0 0 0 -6 -6 M 14 14 a 12 12 0 0 0 -12 -12" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" />
-        </svg><% end -%>
-      <%= link_to t(".upload_trace"), new_trace_path, :class => "btn btn-secondary btn-sm" %>
-    </div>
   </div>
 <% end %>