Makes breadcrumbs sticky

In a dense folder, having to go back up to change the directory is time consuming : I propose to make the breadcrumbs sticky for practicity. Tested on mobile/tablet/desktop with chromium browser ( edge ), safari and firefox.
This commit is contained in:
methatronc 2022-11-01 17:44:24 +01:00 committed by GitHub
parent 3a0dace9a9
commit 6945288b90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,11 @@ nav > div {
.breadcrumbs { .breadcrumbs {
border-color: var(--divider); border-color: var(--divider);
color: var(--textPrimary) !important; color: var(--textPrimary) !important;
position: -webkit-sticky !important;
position: sticky !important;
top: 64px;
z-index: 1000;
background: var(--background);
} }
.breadcrumbs span { .breadcrumbs span {
color: var(--textPrimary) !important; color: var(--textPrimary) !important;