diff --git a/src/scripts/coopstarter.js b/src/scripts/coopstarter.js index b5e0a621d674748ef0199e34164aeecaa6a9754b..5f82631ebe23751aa5174270f723c461355bbaf1 100644 --- a/src/scripts/coopstarter.js +++ b/src/scripts/coopstarter.js @@ -186,11 +186,11 @@ jQuery(document).ready(function($) { /* Toggle between hiding and showing the active panel */ var panelRequest = this.nextElementSibling; - if (panelRequest.style.display === "block") { - panelRequest.style.display = "none"; + if (panelRequest.style.maxHeight) { + panelRequest.style.maxHeight = null; } else { - panelRequest.style.display = "block"; - } + panelRequest.style.maxHeight = panelRequest.scrollHeight + "px"; + } }); } }, 4000); diff --git a/src/styles/index.scss b/src/styles/index.scss index 68d777e02713a6df99c14ca62d591f2e276a34e1..bef5c664db339671e5e1707b537c6e1ea1f83c5c 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -1232,6 +1232,13 @@ cs-validate-action div{ 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 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXX PROFILE XXXXXXXXXXXXXXXXXXXXX