made name smaller and clickable on aspects/index [ci skip]
This commit is contained in:
parent
19897df1ec
commit
0512ade65a
3 changed files with 7 additions and 9 deletions
|
|
@ -25,8 +25,8 @@
|
|||
.span-5.leftNavBar
|
||||
#home_user_badge
|
||||
= owner_image_link
|
||||
%h3
|
||||
= current_user.first_name
|
||||
%h4
|
||||
= link_to current_user.first_name, "/u/#{current_user.username}"
|
||||
|
||||
.section
|
||||
%ul.left_nav
|
||||
|
|
|
|||
|
|
@ -2338,12 +2338,15 @@ ul.show_comments,
|
|||
:position absolute
|
||||
:left 0
|
||||
|
||||
h3
|
||||
h4
|
||||
:position relative
|
||||
:top 13px
|
||||
:top 14px
|
||||
:padding
|
||||
:bottom 5px
|
||||
|
||||
a
|
||||
:color inherit
|
||||
|
||||
:margin
|
||||
:bottom 54px
|
||||
|
||||
|
|
|
|||
|
|
@ -282,11 +282,6 @@ describe Person do
|
|||
alice.person.first_name.should == "First Mid"
|
||||
end
|
||||
|
||||
it 'returns first word in first_name if first_name is present' do
|
||||
alice.person.profile.update_attributes(:first_name => "Alice Smith")
|
||||
alice.person.first_name.should == "Alice"
|
||||
end
|
||||
|
||||
it 'returns first word in first_name if first_name is present' do
|
||||
alice.person.profile.update_attributes(:first_name => "Alice")
|
||||
alice.person.first_name.should == "Alice"
|
||||
|
|
|
|||
Loading…
Reference in a new issue