From 81ad7154747244abfa2e38dc529e62e6bd8998bd Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 16 Jun 2021 16:47:13 +0100 Subject: [PATCH 1/1] Rework tabs to use flexbox This improves the behaviour on small widths, where the tabs stack neatly. It also avoids the use of ml-auto which isn't RTL compatible. The change in indentation is because it was previously coded with multiple li nested inside another li --- app/views/traces/index.html.erb | 61 ++++++++++++++++----------------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/app/views/traces/index.html.erb b/app/views/traces/index.html.erb index fa4e57f47..026e85aed 100644 --- a/app/views/traces/index.html.erb +++ b/app/views/traces/index.html.erb @@ -7,43 +7,42 @@ <%= link_to t(".remove_tag_filter", :tag => params[:tag]), { :controller => "traces", :action => "index", :display_name => nil, :tag => nil, :page => nil }, { :class => "border-left ml-2 pl-2" } %> <% end %>

-