mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-10-31 23:35:00 -04:00
Fix for annoying overflow scroll issues caused by facebook and twitter share/follow widgets.
This commit is contained in:
parent
34173ec3f5
commit
ef148b28e2
@ -89,7 +89,10 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
#content { > div, > article { width: 100%; }}
|
||||
#content {
|
||||
overflow: hidden;
|
||||
> div, > article { width: 100%; }
|
||||
}
|
||||
|
||||
aside.sidebar {
|
||||
float: none;
|
||||
@ -134,6 +137,7 @@ body.sidebar-footer {
|
||||
}
|
||||
#content {
|
||||
@extend .group;
|
||||
overflow: visible;
|
||||
margin-right: $sidebar-width-medium;
|
||||
position: relative;
|
||||
.no-sidebar & { margin-right: 0; border-right: 0; }
|
||||
|
@ -4,3 +4,5 @@
|
||||
background: $img-border top left repeat-x;
|
||||
}
|
||||
}
|
||||
|
||||
#fb-root { display: none; }
|
||||
|
@ -2,6 +2,7 @@
|
||||
@include box-shadow(lighten($sidebar-bg, 5) 0 1px);
|
||||
}
|
||||
aside.sidebar {
|
||||
overflow: hidden;
|
||||
color: $sidebar-color;
|
||||
text-shadow: lighten($sidebar-bg, 8) 0 1px;
|
||||
a { @extend .force-wrap; }
|
||||
|
Loading…
Reference in New Issue
Block a user