Fixing IE scrolling issue and also fixing horizontal scrollbar

This commit is contained in:
Asaad Mahmood
2015-12-14 22:27:41 +05:00
parent ab367f2bc6
commit 95e0fd88fc
4 changed files with 7 additions and 6 deletions

View File

@@ -233,7 +233,8 @@ export default class PostsView extends React.Component {
window.requestAnimationFrame(() => {
// If separator exists scroll to it. Otherwise scroll to bottom.
if (this.refs.newMessageSeparator) {
this.refs.newMessageSeparator.scrollIntoView();
var objDiv = this.refs.postlist;
objDiv.scrollTop = this.refs.newMessageSeparator.offsetTop; //scrolls node to top of Div
} else {
this.refs.postlist.scrollTop = this.refs.postlist.scrollHeight;
}

View File

@@ -8,7 +8,7 @@ body {
font-family: 'Open Sans', sans-serif;
-webkit-font-smoothing: antialiased;
background: $body-bg;
position: absolute;
position: relative;
width: 100%;
height: 100%;
&.white {
@@ -36,11 +36,13 @@ body {
.container-fluid {
@include legacy-pie-clearfix;
height: 100%;
position: relative;
}
.channel-view {
@include clearfix;
height: 100%;
position: relative;
}
img {

View File

@@ -54,9 +54,7 @@
@media screen and (max-width: 960px) {
.sidebar--right {
width: 400px;
z-index: 5;
right: 0;
@include translateX(100%);
&.move--left {

View File

@@ -8,10 +8,10 @@
padding: 0;
background: #fff;
@include single-transition(transform, 0.5s, ease);
right: -320px;
@include translateX(400px);
&.move--left {
right: 0;
@include translateX(0);
}
.post-body {