Skip to content
Snippets Groups Projects
Commit 862d1981 authored by Elmar Ludwig's avatar Elmar Ludwig Committed by Jan-Hendrik Willms
Browse files

use "display: none" instead of "visibility: hidden", fixes #2034 and #2043

Closes #2034 and #2043

Merge request studip/studip!1331
parent 084d8361
No related branches found
No related tags found
1 merge request!4Draft: Icon creation
...@@ -1475,11 +1475,6 @@ c o l l a p s i b l e b o x ...@@ -1475,11 +1475,6 @@ c o l l a p s i b l e b o x
border: solid thin $content-color-40; border: solid thin $content-color-40;
margin-bottom: -1px; margin-bottom: -1px;
height: 34px;
&.cw-collapsible-open {
height: unset;
}
.cw-collapsible-title { .cw-collapsible-title {
@include background-icon(arr_1right, clickable); @include background-icon(arr_1right, clickable);
...@@ -1502,12 +1497,9 @@ c o l l a p s i b l e b o x ...@@ -1502,12 +1497,9 @@ c o l l a p s i b l e b o x
} }
.cw-collapsible-content { .cw-collapsible-content {
padding: 0; display: none;
visibility: hidden;
height: 0;
&.cw-collapsible-content-open { &.cw-collapsible-content-open {
visibility: visible; display: block;
height: unset;
padding: 10px; padding: 10px;
} }
} }
...@@ -1822,7 +1814,6 @@ b l o c k a d d e r ...@@ -1822,7 +1814,6 @@ b l o c k a d d e r
.cw-collapsible { .cw-collapsible {
.cw-collapsible-content { .cw-collapsible-content {
visibility: unset;
display: none; display: none;
&.cw-collapsible-content-open { &.cw-collapsible-content-open {
display: block; display: block;
......
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