Skip to content
Snippets Groups Projects
Commit 771739fe authored by Alice Poggioli's avatar Alice Poggioli Committed by Benoit Alessandroni
Browse files

Feature: On mentor dashbourd, the accordions have a smooth animation.

parent 516c0a0c
No related branches found
No related tags found
1 merge request!51Feature: Set accordion to request tab in mentor dashboard.
...@@ -186,11 +186,11 @@ jQuery(document).ready(function($) { ...@@ -186,11 +186,11 @@ jQuery(document).ready(function($) {
/* Toggle between hiding and showing the active panel */ /* Toggle between hiding and showing the active panel */
var panelRequest = this.nextElementSibling; var panelRequest = this.nextElementSibling;
if (panelRequest.style.display === "block") { if (panelRequest.style.maxHeight) {
panelRequest.style.display = "none"; panelRequest.style.maxHeight = null;
} else { } else {
panelRequest.style.display = "block"; panelRequest.style.maxHeight = panelRequest.scrollHeight + "px";
} }
}); });
} }
}, 4000); }, 4000);
......
...@@ -1232,6 +1232,13 @@ cs-validate-action div{ ...@@ -1232,6 +1232,13 @@ cs-validate-action div{
text-align: right; text-align: right;
} }
#requests sib-set-default[name="content"] {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXX PROFILE XXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXX PROFILE XXXXXXXXXXXXXXXXXXXXX
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment