UX: revert sidebar scrollbar repositioning (#18076)

This commit is contained in:
Kris 2022-08-24 13:26:25 -04:00 committed by GitHub
parent e7a84948b9
commit 03a599f457
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 20 additions and 28 deletions

View File

@ -1,9 +1,8 @@
<DSection @pageClass="has-sidebar" @class="sidebar-container" @scrollTop={{false}}>
<div class="sidebar-scroll-wrap">
{{#if this.currentUser}}
<Sidebar::User::Sections @collapsableSections={{true}}/>
{{else}}
<Sidebar::Anonymous::Sections />
{{/if}}
</div>
{{#if this.currentUser}}
<Sidebar::User::Sections @collapsableSections={{true}}/>
{{else}}
<Sidebar::Anonymous::Sections />
{{/if}}
<Sidebar::Footer />
</DSection>

View File

@ -4,6 +4,7 @@
<div class="panel-body-contents">
<div class="sidebar-hamburger-dropdown">
<Sidebar::User::Sections @collapsableSections={{false}}/>
<Sidebar::Footer @tagName="" />
</div>
</div>
</div>

View File

@ -45,5 +45,4 @@
{{/each}}
</Sidebar::Section>
{{/each}}
<Sidebar::Footer />
</div>

View File

@ -1,8 +1,6 @@
.sidebar-footer-wrapper {
box-sizing: border-box;
width: 100%;
margin-top: auto;
padding-top: 1em;
position: sticky;
bottom: 0;

View File

@ -5,10 +5,11 @@
}
.sidebar-wrapper {
display: flex;
--d-sidebar-highlight-color: var(--primary-low);
// 1.25rem gets text left-aligned with the hamburger icon
--d-sidebar-row-horizontal-padding: 1.25rem;
background-color: var(--primary-very-low);
grid-area: sidebar;
position: sticky;
top: var(--header-offset);
@ -16,7 +17,7 @@
.footer-nav-ipad & {
top: calc(var(--header-offset) + var(--footer-nav-height));
}
height: calc(100vh - var(--header-offset));
height: calc(100vh - var(--header-offset, 0));
align-self: start;
overflow-y: auto;
@ -31,11 +32,19 @@
flex-direction: column;
box-sizing: border-box;
height: 100%;
width: 100%;
padding: 0;
overflow-x: hidden;
// allows sidebar to scroll to the bottom when the composer is open
height: calc(100% - var(--composer-height, 0));
}
.sidebar-scroll-wrap {
.sidebar-sections {
display: flex;
flex-direction: column;
box-sizing: border-box;
flex: 1;
padding: 1em 0;
box-sizing: border-box;
flex: 1;
display: flex;
@ -76,20 +85,6 @@
// 0.5em gives webkit browsers a little space between the scrollbar and the content
width: calc(var(--scrollbarWidth) - 0.45em);
}
// allows sidebar to scroll to the bottom when the composer is open
margin-bottom: var(--composer-height);
padding-bottom: var(--composer-ipad-padding);
}
.sidebar-sections {
display: flex;
flex-direction: column;
box-sizing: border-box;
flex: 1;
padding: 1em 0 0;
max-width: calc(var(--d-sidebar-width) - var(--scrollbarWidth));
background-color: var(--primary-very-low);
}
}

View File

@ -195,7 +195,7 @@ body.has-sidebar-page {
#main-outlet-wrapper {
grid-template-columns: var(--d-sidebar-width) minmax(0, 1fr);
gap: 0 0.5em;
gap: 0 1em;
padding-left: 0;
}
}