Browse code

Fix for annoying overflow scroll issues caused by facebook and twitter share/follow widgets.

Brandon Mathis authored on 09/01/2012 at 01:54:17
Showing 3 changed files
... ...
@@ -89,7 +89,10 @@ body {
89 89
   }
90 90
 }
91 91
 
92
-#content { > div, > article { width: 100%; }}
92
+#content {
93
+  overflow: hidden;
94
+  > div, > article { width: 100%; }
95
+}
93 96
 
94 97
 aside.sidebar {
95 98
   float: none;
... ...
@@ -134,6 +137,7 @@ body.sidebar-footer {
134 134
   }
135 135
   #content {
136 136
     @extend .group;
137
+    overflow: visible;
137 138
     margin-right: $sidebar-width-medium;
138 139
     position: relative;
139 140
     .no-sidebar & { margin-right: 0; border-right: 0; }
... ...
@@ -4,3 +4,5 @@
4 4
     background: $img-border top left repeat-x;
5 5
   }
6 6
 }
7
+
8
+#fb-root { display: none; }
... ...
@@ -2,6 +2,7 @@
2 2
   @include box-shadow(lighten($sidebar-bg, 5) 0 1px);
3 3
 }
4 4
 aside.sidebar {
5
+  overflow: hidden;
5 6
   color: $sidebar-color;
6 7
   text-shadow: lighten($sidebar-bg, 8) 0 1px;
7 8
   a { @extend .force-wrap; }