diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-10-25 18:53:57 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-10-25 18:53:57 +0200 |
commit | 113b461dfd626c11fda76bfa25cfada9e1b1fcc6 (patch) | |
tree | e4317509d6abf1da61c50be8885f12dcebdcdfae /skins/classic/common.css | |
parent | 7f196096f43d534091ed5f1ffa073af9b4ce0e93 (diff) |
Better fix for menu scrollbars: only allow vertical scrollbar to appear
Diffstat (limited to 'skins/classic/common.css')
-rw-r--r-- | skins/classic/common.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/skins/classic/common.css b/skins/classic/common.css index 7d7c83f39..186be2485 100644 --- a/skins/classic/common.css +++ b/skins/classic/common.css @@ -484,7 +484,8 @@ body.iframe .boxtitle 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); |