diff options
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; |