From 113b461dfd626c11fda76bfa25cfada9e1b1fcc6 Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Fri, 25 Oct 2013 12:53:57 -0400
Subject: [PATCH] Better fix for menu scrollbars: only allow vertical scrollbar to appear

---
 skins/classic/common.css |    3 ++-
 skins/larry/styles.css   |    4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/skins/classic/common.css b/skins/classic/common.css
index 7d7c83f..186be24 100644
--- a/skins/classic/common.css
+++ b/skins/classic/common.css
@@ -484,7 +484,8 @@
   left: 90px;
   width: auto;
   max-height: 70%;
-  overflow: auto;
+  overflow: -moz-scrollbars-vertical;
+  overflow-y: auto;
   display: none;
   background-color: #fff;
   background-color: rgba(255, 255, 255, 0.95);
diff --git a/skins/larry/styles.css b/skins/larry/styles.css
index 2929713..0d7a500 100644
--- a/skins/larry/styles.css
+++ b/skins/larry/styles.css
@@ -1925,7 +1925,8 @@
 	left: 90px;
 	width: auto;
 	max-height: 70%;
-	overflow: auto;
+	overflow: -moz-scrollbars-vertical;
+	overflow-y: auto;
 	background: #444;
 	border: 1px solid #999;
 	z-index: 240;
@@ -1958,7 +1959,6 @@
 	margin: 0;
 	border-top: 1px solid #5a5a5a;
 	border-bottom: 1px solid #333;
-	padding-right: 10px;
 }
 
 .googie_list tr:first-child td,

--
Gitblit v1.9.1