Skip to content
Snippets Groups Projects
Commit ba0ab11c authored by Jiří Setnička's avatar Jiří Setnička
Browse files

CSS: Oprava příliš dlouhého collapsible elementu

parent 342225f4
No related branches found
No related tags found
1 merge request!126Vylepšení skenování - prázdné stránky, otáčení, vylepšení UI
......@@ -417,10 +417,15 @@ div.alert + div.alert {
.collapsible .collapsible-inner {
max-height: 0;
overflow-y: hidden;
transition: 0.5s ease;
}
.collapsible input[type="checkbox"].toggle:checked ~ .collapsible-inner {
max-height: 100vh;
animation: max-height-rolldown 0.5s ease forwards;
}
@keyframes max-height-rolldown {
from { max-height: 0vh; }
99% { max-height: 100vh; }
to { max-height: max-content; }
}
/* User messages */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment