diff options
author | friendica <info@friendica.com> | 2011-12-18 01:44:46 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-18 01:44:46 -0800 |
commit | 5d6a098ce0bf14e372c297ed09c9f0452fa60ec7 (patch) | |
tree | 75cb1c0d89c7b82f4a7db6f71236a60a236702a3 /view | |
parent | 974a52a16d3440b6d361b883412c00edd15e770b (diff) | |
download | volse-hubzilla-5d6a098ce0bf14e372c297ed09c9f0452fa60ec7.tar.gz volse-hubzilla-5d6a098ce0bf14e372c297ed09c9f0452fa60ec7.tar.bz2 volse-hubzilla-5d6a098ce0bf14e372c297ed09c9f0452fa60ec7.zip |
add connect link to suggestion and matches
Diffstat (limited to 'view')
-rw-r--r-- | view/match.tpl | 4 | ||||
-rw-r--r-- | view/suggest_friends.tpl | 2 | ||||
-rw-r--r-- | view/theme/duepuntozero/style.css | 5 |
3 files changed, 10 insertions, 1 deletions
diff --git a/view/match.tpl b/view/match.tpl index 330245a2a..5f2fc7a30 100644 --- a/view/match.tpl +++ b/view/match.tpl @@ -9,4 +9,8 @@ <a href="$url" title="$name[$tags]">$name</a> </div> <div class="profile-match-end"></div> + {{ if $connlnk }} + <div class="profile-match-connect"><a href="$connlnk" title="$conntxt">$conntxt</a></div> + {{ endif }} + </div>
\ No newline at end of file diff --git a/view/suggest_friends.tpl b/view/suggest_friends.tpl index c66cdd65d..e97b5e8cc 100644 --- a/view/suggest_friends.tpl +++ b/view/suggest_friends.tpl @@ -9,8 +9,8 @@ <div class="profile-match-name"> <a href="$url" title="$name">$name</a> </div> + <div class="profile-match-end"></div> {{ if $connlnk }} <div class="profile-match-connect"><a href="$connlnk" title="$conntxt">$conntxt</a></div> {{ endif }} - <div class="profile-match-end"></div> </div>
\ No newline at end of file diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 1127f1145..c6582d068 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2383,6 +2383,11 @@ aside input[type='text'] { clear: both; } +.profile-match-connect { + text-align: center; + font-weight: bold; +} + .profile-match-wrapper { float: left; padding: 10px; |