leave room for vertical scrollbar (when needed)

This commit is contained in:
Friendika 2011-01-24 23:08:39 -08:00
parent fc5316fe21
commit b0ab3e468b
3 changed files with 21 additions and 9 deletions

View File

@ -2215,3 +2215,17 @@ function link_compare($a,$b) {
return true;
return false;
}}
if(! function_exists('prepare_body')) {
function prepare_body($item) {
require_once('include/bbcode.php');
$s = smilies(bbcode($item['body']));
return $s;
}}

View File

@ -985,6 +985,10 @@ input#dfrn-url {
width: 450px;
margin-left: 10px;
margin-bottom: 20px;
padding: 20px;
max-height: 400px;
overflow: auto;
}
.wall-item-title {
@ -1996,8 +2000,3 @@ a.mail-list-link {
margin-bottom: 15px;
}
.wall-item-content {
max-height: 400px;
overflow:auto;
}

View File

@ -854,6 +854,9 @@ input#dfrn-url {
width: 450px;
margin-left: 10px;
margin-bottom: 20px;
padding: 20px;
max-height: 400px;
overflow: auto;
}
.wall-item-title {
@ -1879,7 +1882,3 @@ a.mail-list-link {
margin-bottom: 15px;
}
.wall-item-content {
max-height: 400px;
overflow:auto;
}