Skip to content
Snippets Groups Projects
Commit 83205b8c authored by Shpuld Shpuldson's avatar Shpuld Shpuldson
Browse files

Make sidepanel scroll independently from timeline, allows for seeing...

Make sidepanel scroll independently from timeline, allows for seeing notifications and posting new statuses even when scrolled deep down.
parent 446de1c6
No related branches found
No related tags found
No related merge requests found
......@@ -222,6 +222,12 @@ nav {
flex-basis: 35%;
}
.sidebar-flexer {
flex: 1;
flex-basis: 35%;
width: 365px;
}
.mobile-shown {
display: none;
}
......@@ -238,6 +244,28 @@ nav {
}
}
@media all and (min-width: 960px) {
.sidebar {
overflow: hidden;
max-height: 100vh;
max-width: 345px;
position: fixed;
margin-top: -10px;
.sidebar-container {
height: 96vh;
padding-top: 10px;
margin-right: -40px;
padding-right: 25px;
overflow-x: hidden;
overflow-y: auto;
}
}
.sidebar-flexer {
max-height: 96vh;
}
}
@media all and (max-width: 959px) {
.mobile-hidden {
display: none;
......
......@@ -15,10 +15,14 @@
<button @click="activatePanel('sidebar')">Sidebar</button>
<button @click="activatePanel('timeline')">Timeline</button>
</div>
<div class="sidebar" :class="{ 'mobile-hidden': mobileActivePanel != 'sidebar' }">
<user-panel></user-panel>
<nav-panel></nav-panel>
<notifications v-if="currentUser"></notifications>
<div class="sidebar-flexer" :class="{ 'mobile-hidden': mobileActivePanel != 'sidebar'}">
<div class="sidebar" :class="{ 'mobile-hidden': mobileActivePanel != 'sidebar' }">
<div class="sidebar-container">
<user-panel></user-panel>
<nav-panel></nav-panel>
<notifications v-if="currentUser"></notifications>
</div>
</div>
</div>
<div class="main" :class="{ 'mobile-hidden': mobileActivePanel != 'timeline' }">
<transition name="fade">
......
@import '../../_variables.scss';
.notifications {
// a bit of a hack to allow scrolling below notifications
padding-bottom: 15em;
.panel-heading {
// force the text to stay centered, while keeping
......
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