diff options
author | Friendika <info@friendika.com> | 2011-03-28 00:49:20 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-28 00:49:20 -0700 |
commit | 1f6c6c466a449ba422c4e67744577f6c35b3ce0b (patch) | |
tree | 41c104679283833a8da87b7a9fcac3f45a2d4542 | |
parent | 77fbd2f78c6a24201a26d5c4ec60ad5fb42c48dd (diff) | |
download | volse-hubzilla-1f6c6c466a449ba422c4e67744577f6c35b3ce0b.tar.gz volse-hubzilla-1f6c6c466a449ba422c4e67744577f6c35b3ce0b.tar.bz2 volse-hubzilla-1f6c6c466a449ba422c4e67744577f6c35b3ce0b.zip |
author collapse: close off before pagination
-rw-r--r-- | mod/network.php | 4 | ||||
-rw-r--r-- | view/theme/duepuntozero/style.css | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/mod/network.php b/mod/network.php index f68b399f8..17d36dfb2 100644 --- a/mod/network.php +++ b/mod/network.php @@ -546,6 +546,10 @@ function network_content(&$a, $update = 0) { } if(! $update) { + if($blowhard_count > 3) + $o .= '</div>'; + + $o .= paginate($a); $o .= '<div class="cc-license">' . t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.') . '</div>'; } diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 7ab85344d..0d89fa3b1 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -51,6 +51,11 @@ blockquote:before { content: '>> '; } +.icollapse-wrapper, .ccollapse-wrapper { + border: 1px solid #CCC; + padding: 5px; +} + #panel { background-color: ivory; position: absolute; |