From 24c994f2a5dea13d1a673ab09def0330e9245a3b Mon Sep 17 00:00:00 2001 From: Alexandre Iooss <erdnaxe@crans.org> Date: Fri, 21 Feb 2020 21:33:49 +0100 Subject: [PATCH] Fix y-overflow on accordion showing during transition --- templates/member/profile_detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/member/profile_detail.html b/templates/member/profile_detail.html index f68dc278..655f9893 100644 --- a/templates/member/profile_detail.html +++ b/templates/member/profile_detail.html @@ -54,7 +54,7 @@ <i class="fa fa-users"></i> {% trans "View my memberships" %} </a> </div> - <div id="clubListCollapse" class="collapse overflow-auto show" aria-labelledby="clubListHeading" data-parent="#accordionProfile"> + <div id="clubListCollapse" class="collapse show" style="overflow:auto hidden" aria-labelledby="clubListHeading" data-parent="#accordionProfile"> {% render_table club_list %} </div> </div> @@ -67,7 +67,7 @@ <i class="fa fa-euro"></i> Historique des transactions </a> </div> - <div id="historyListCollapse" class="collapse overflow-auto" aria-labelledby="historyListHeading" data-parent="#accordionProfile"> + <div id="historyListCollapse" class="collapse" style="overflow:auto hidden" aria-labelledby="historyListHeading" data-parent="#accordionProfile"> {% render_table history_list %} </div> </div> -- GitLab