tab-center-reborn: Collapse sidebar in fullscreen (#638)

This commit is contained in:
Marc0x1 2023-06-07 17:17:53 +00:00 committed by GitHub
parent 75d0c792aa
commit bc1033167a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 1 deletions

View File

@ -117,6 +117,24 @@
display: none !important;
}
}
#main-window[inFullscreen="true"] #sidebar-box[sidebarcommand="tabcenter-reborn_ariasuni-sidebar-action"],
#main-window[inFullscreen="true"] #sidebar-box[sidebarcommand="tabcenter-reborn_ariasuni-sidebar-action"] + splitter {
visibility: collapse;
animation: var(--transition-time) fadeOut;
animation-fill-mode: forwards;
}
@keyframes fadeOut {
0% {
visibility: visible;
opacity: 1;
}
100% {
opacity: 0;
}
}
}
@supports -moz-bool-pref("gnomeTheme.extensions.tabCenterReborn.alwaysOpen") {
@ -140,4 +158,4 @@
max-width: 250px !important;
}
}
}
}