Forum Panel: Do not collapse Chat Folders

This commit is contained in:
Alexander Zinchuk 2023-01-07 19:09:00 +01:00
parent 5ffc9036f9
commit d65f1d99fc

View File

@ -17,14 +17,6 @@
flex-direction: column;
overflow: hidden;
transition: transform 250ms ease; // Same as Forum Panel
&--tabs-hidden {
transform: translateY(-3.125rem);
height: calc(100% + 3.125rem);
}
.tabs-placeholder {
height: 2.625rem;
/* stylelint-disable-next-line plugin/no-low-performance-animation-properties */
@ -41,6 +33,14 @@
padding-bottom: 1px;
border-bottom: 0;
z-index: 1;
opacity: 1;
transition: opacity 250ms ease; // Same as Forum Panel
}
&--tabs-hidden .TabList {
pointer-events: none;
opacity: 0.25;
}
.Tab {