From 7ba798c51d3ed6189339a6493609fbac75e48e3f Mon Sep 17 00:00:00 2001 From: Robert Lord Date: Tue, 24 Sep 2013 10:35:33 -0700 Subject: [PATCH] Overflow fixes and toc horizontal scrollbar fix --- source/stylesheets/all.css.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/stylesheets/all.css.scss b/source/stylesheets/all.css.scss index 5a5e9e2..239bad6 100644 --- a/source/stylesheets/all.css.scss +++ b/source/stylesheets/all.css.scss @@ -114,6 +114,7 @@ html, body { table { margin-bottom: 1em; + overflow: auto; th,td { text-align: left; vertical-align: top; @@ -126,6 +127,7 @@ html, body { vertical-align: bottom; // @include background-image(linear-gradient(bottom, darken($main-bg, 3%), $main-bg)); @include embedded-text; + max-width: 100%; } td { @@ -212,7 +214,8 @@ html, body { /* The Table of Contents container element */ .tocify { - overflow: auto; + overflow-y: auto; + overflow-x: hidden; position: fixed; top: 0; left: 0;