show tags under names in people partials
This commit is contained in:
parent
a85b5bb70f
commit
55ac4c8054
4 changed files with 18 additions and 3 deletions
|
|
@ -36,7 +36,6 @@
|
||||||
%h4= t('shared.invitations.invite_your_friends')
|
%h4= t('shared.invitations.invite_your_friends')
|
||||||
= render "shared/invitations", :invites => @invites
|
= render "shared/invitations", :invites => @invites
|
||||||
|
|
||||||
|
|
||||||
#aspect_listings.section
|
#aspect_listings.section
|
||||||
= render 'aspects/aspect_listings', :aspects => @aspects
|
= render 'aspects/aspect_listings', :aspects => @aspects
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,5 +32,5 @@
|
||||||
=person_link(person)
|
=person_link(person)
|
||||||
|
|
||||||
.info
|
.info
|
||||||
= person.diaspora_handle
|
= person.profile.format_tags(person.profile.tag_string)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
%span.from
|
%span.from
|
||||||
=person_link(person)
|
=person_link(person)
|
||||||
.info
|
.info
|
||||||
= person.diaspora_handle
|
= person.profile.format_tags(person.profile.tag_string)
|
||||||
|
|
||||||
- if @people_count > 15
|
- if @people_count > 15
|
||||||
\...
|
\...
|
||||||
|
|
|
||||||
|
|
@ -2787,6 +2787,22 @@ ul.show_comments
|
||||||
:font
|
:font
|
||||||
:weight bold
|
:weight bold
|
||||||
|
|
||||||
|
.info
|
||||||
|
:overflow hidden
|
||||||
|
:white-space nowrap
|
||||||
|
:text-overflow ellipsis
|
||||||
|
|
||||||
|
.tag
|
||||||
|
:background
|
||||||
|
:color #efefef
|
||||||
|
:color #999
|
||||||
|
:border
|
||||||
|
:bottom 1px dotted #999
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
:border
|
||||||
|
:bottom 1px solid #999
|
||||||
|
|
||||||
.diaspora_handle
|
.diaspora_handle
|
||||||
:font
|
:font
|
||||||
:size 12px
|
:size 12px
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue