From 0593ca8f1fe853e2dd4b4e8d56dbe4ea1a5341be Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Wed, 19 Mar 2008 13:05:56 -0700 Subject: [PATCH] LAYOUT: keep notes area from overflowing added overflow auto to CSS and fixed the height of the div. Depending on the screen size there might be overlap now, but at least the notes area won't grow like crazy in case you add too many notes. Signed-off-by: Arun Persaud --- css/standard.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/standard.css b/css/standard.css index 1766d6a..2862248 100644 --- a/css/standard.css +++ b/css/standard.css @@ -378,6 +378,9 @@ ul.tricks li div div span.comment span{ padding:0.3em; background-color: #efefef; + + height:10em; + overflow: auto; } .user { margin-left:25%;margin-right:25%; } -- 2.17.1