1
Fork 0

Fix bad handling of the source code viewer sidebar style to prevent the appearance of the logo

This commit is contained in:
Guillaume Gomez 2022-02-24 12:04:17 +01:00
parent b8967b0d52
commit ada7efae9d

View file

@ -397,17 +397,17 @@ nav.sub {
overflow-y: hidden;
}
.source .sidebar > *:not(:first-child) {
transition: opacity 0.5s;
.source .sidebar > *:not(#sidebar-toggle) {
opacity: 0;
visibility: hidden;
transition: opacity 0.5s;
}
.source .sidebar.expanded {
overflow-y: auto;
}
.source .sidebar.expanded > * {
.source .sidebar.expanded > *:not(#sidebar-toggle) {
opacity: 1;
visibility: visible;
}