From 08c4bf588e9910844ae7a0295aac175ca96d6291 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Thu, 26 Feb 2015 09:06:20 -0500 Subject: [PATCH] Fix bug where scrolling wouldn't work, resolves issue #6 --- popup.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/popup.css b/popup.css index 85b5075..8714c79 100644 --- a/popup.css +++ b/popup.css @@ -1,12 +1,15 @@ html{ height:600px; max-height: 600px; + overflow-y:scroll; + overflow-x: hidden; } body{ height:600px; max-height:600px; width:400px; - overflow:scroll; + overflow-y:scroll; + overflow-x: hidden; margin:0px; } ul#windows{ @@ -75,7 +78,6 @@ li.window>span.textContent{ padding-bottom: 7px; padding-left:11px; display:block; - width: 100%; background-color: #778899; font-weight: bold; color:#E1E6F7;