diff options
author | Simon <simon@kisikew.org> | 2012-03-05 07:56:43 -0800 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-05 07:56:43 -0800 |
commit | e786e4253d1f1077c8ec3b9afa147b547e41f506 (patch) | |
tree | 5c22f70b883407838280a9481baa52b9059c7fdb /view | |
parent | 965e657c20c60cb51565dcedfe286eff0ffebfbe (diff) | |
parent | 65b6ec79ed0891a4622cbb5d8ec934e4bd8caef2 (diff) | |
download | volse-hubzilla-e786e4253d1f1077c8ec3b9afa147b547e41f506.tar.gz volse-hubzilla-e786e4253d1f1077c8ec3b9afa147b547e41f506.tar.bz2 volse-hubzilla-e786e4253d1f1077c8ec3b9afa147b547e41f506.zip |
Merge pull request #85 from simonlnu/master
hopefully fix overflow issue now
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/dispy/style.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css index a9d680d94..01c7fe664 100644 --- a/view/theme/dispy/style.css +++ b/view/theme/dispy/style.css @@ -414,8 +414,8 @@ div.jGrowl div.info { padding-left: 58px; } #nav-notifications-menu { - margin-top: 30px; - width: 255px; + margin: 30px 0 0 -45px; + width: 300px; max-height: 400px; overflow: auto; font-size: 9pt; @@ -1021,6 +1021,7 @@ section { /*border: 1px #aaa solid;*/ /*border-radius: 5px;*/ padding: 0px; + overflow-x: auto; } .wall-item-photo-menu { display: none; |