From 32bc97f8559a3a1b9c9237dbb3640f9eac6daf98 Mon Sep 17 00:00:00 2001 From: Asaad Mahmood Date: Wed, 6 Apr 2016 23:19:55 +0500 Subject: Multiple UI Improvements * Multiple UI Improvements * Adding app_body behind missing classes --- webapp/components/sidebar_right.jsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'webapp/components/sidebar_right.jsx') diff --git a/webapp/components/sidebar_right.jsx b/webapp/components/sidebar_right.jsx index 594674929..43b4a34bb 100644 --- a/webapp/components/sidebar_right.jsx +++ b/webapp/components/sidebar_right.jsx @@ -66,28 +66,28 @@ export default class SidebarRight extends React.Component { var windowWidth = $(window).outerWidth(); var sidebarRightWidth = $('.sidebar--right').outerWidth(); - $('.inner-wrap').removeClass('.move--right'); - $('.inner-wrap').addClass('move--left'); - $('.sidebar--left').removeClass('move--right'); - $('.sidebar--right').addClass('move--left'); + $('.app__body .inner-wrap').removeClass('.move--right'); + $('.app__body .inner-wrap').addClass('move--left'); + $('.app__body .sidebar--left').removeClass('move--right'); + $('.app__body .sidebar--right').addClass('move--left'); //$('.sidebar--right').prepend(''); if (this.state.searchVisible || this.state.postRightVisible) { if (windowWidth > 960) { - velocity($('.inner-wrap'), {marginRight: sidebarRightWidth}, {duration: 500, easing: 'easeOutSine'}); - velocity($('.sidebar--right'), {translateX: 0}, {duration: 500, easing: 'easeOutSine'}); + velocity($('.app__body .inner-wrap'), {marginRight: sidebarRightWidth}, {duration: 500, easing: 'easeOutSine'}); + velocity($('.app__body .sidebar--right'), {translateX: 0}, {duration: 500, easing: 'easeOutSine'}); } else { - $('.inner-wrap, .sidebar--right').attr('style', ''); + $('.app__body .inner-wrap, .sidebar--right').attr('style', ''); } } else { if (windowWidth > 960) { - velocity($('.inner-wrap'), {marginRight: 0}, {duration: 500, easing: 'easeOutSine'}); - velocity($('.sidebar--right'), {translateX: sidebarRightWidth}, {duration: 500, easing: 'easeOutSine'}); + velocity($('.app__body .inner-wrap'), {marginRight: 0}, {duration: 500, easing: 'easeOutSine'}); + velocity($('.app__body .sidebar--right'), {translateX: sidebarRightWidth}, {duration: 500, easing: 'easeOutSine'}); } else { - $('.inner-wrap, .sidebar--right').attr('style', ''); + $('.app__body .inner-wrap, .sidebar--right').attr('style', ''); } - $('.inner-wrap').removeClass('move--left').removeClass('move--right'); - $('.sidebar--right').removeClass('move--left'); + $('.app__body .inner-wrap').removeClass('move--left').removeClass('move--right'); + $('.app__body .sidebar--right').removeClass('move--left'); return (
); -- cgit v1.2.3-1-g7c22