diff options
author | Friendika <info@friendika.com> | 2010-11-05 05:01:54 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-05 05:01:54 -0700 |
commit | 3cc662aa63722f3d142fcc924614140a70ecc323 (patch) | |
tree | 3e50e96d503c5b6af333700018624b55173d3de4 /view | |
parent | 206eee02294cc75c06479f599c03e5a95ea5ee70 (diff) | |
download | volse-hubzilla-3cc662aa63722f3d142fcc924614140a70ecc323.tar.gz volse-hubzilla-3cc662aa63722f3d142fcc924614140a70ecc323.tar.bz2 volse-hubzilla-3cc662aa63722f3d142fcc924614140a70ecc323.zip |
friend/contact sidebar block
Diffstat (limited to 'view')
-rw-r--r-- | view/profile.php | 2 | ||||
-rw-r--r-- | view/theme/default/style.css | 15 |
2 files changed, 15 insertions, 2 deletions
diff --git a/view/profile.php b/view/profile.php index 1d036dc5c..b59a12b71 100644 --- a/view/profile.php +++ b/view/profile.php @@ -23,8 +23,6 @@ <?php if($profile['uid'] != $_SESSION['uid']) { ?>
<li><a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['nickname']; ?>">Connect</a></li>
<?php } ?>
- <?php if(! $profile['hide-friends']) echo '<li><a id="viewcontacts-link" href="viewcontacts/' . $profile['nickname'] . '">View Contacts</a></li>'; ?>
-
</ul>
</div>
diff --git a/view/theme/default/style.css b/view/theme/default/style.css index fd51e1d53..42da72d6a 100644 --- a/view/theme/default/style.css +++ b/view/theme/default/style.css @@ -616,6 +616,9 @@ input#dfrn-url { #view-contact-end { clear: both; } +#viewcontacts { + margin-top: 15px; +} #profile-edit-default-desc { color: #FF0000; border: 1px solid #FF8888; @@ -1780,3 +1783,15 @@ a.mail-list-link:hover { cursor: url('lock.cur'), pointer; /* cursor: pointer !important; */ } + +.contact-block-div { + float: left; + width: 52px; + height: 52px; +} +#contact-block-end { + clear: both; +} +.contact-block-link { + float: left; +}
\ No newline at end of file |