force all links to not be bold.
This commit is contained in:
parent
39c5189c1f
commit
b983746888
2 changed files with 18 additions and 6 deletions
|
|
@ -15,9 +15,9 @@
|
||||||
%span.time
|
%span.time
|
||||||
= t('ago', :time => time_ago_in_words(@status_message.created_at))
|
= t('ago', :time => time_ago_in_words(@status_message.created_at))
|
||||||
|
|
||||||
%br
|
%br
|
||||||
- if current_user.owns? @status_message
|
- if current_user.owns? @status_message
|
||||||
= link_to t('.destroy'), @status_message, :confirm => t('are_you_sure'), :method => :delete
|
= link_to t('.destroy'), @status_message, :confirm => t('are_you_sure'), :method => :delete
|
||||||
|
|
||||||
.stream.show{:data=>{:guid=>@status_message.id}}
|
.stream.show{:data=>{:guid=>@status_message.id}}
|
||||||
= render "comments/comments", :post_id => @status_message.id, :comments => @status_message.comments, :always_expanded => true, :force_open => true
|
= render "comments/comments", :post_id => @status_message.id, :comments => @status_message.comments, :always_expanded => true, :force_open => true
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,18 @@
|
||||||
|
// Copyright (c) 2010, Diaspora Inc. This file is
|
||||||
|
// licensed under the Affero General Public License version 3 or later. See
|
||||||
|
// the COPYRIGHT file.
|
||||||
|
|
||||||
|
|
||||||
@import "mixins"
|
@import "mixins"
|
||||||
|
|
||||||
a
|
$blue: #3F8FBA
|
||||||
|
|
||||||
|
a:not([role='button'])
|
||||||
:text
|
:text
|
||||||
:decoration none
|
:decoration none
|
||||||
:font
|
:font
|
||||||
:weight normal
|
:weight normal !important
|
||||||
|
:color $blue !important
|
||||||
|
|
||||||
#landing_content
|
#landing_content
|
||||||
:text-align center
|
:text-align center
|
||||||
|
|
@ -66,7 +74,9 @@ a
|
||||||
:margin
|
:margin
|
||||||
:bottom 4px
|
:bottom 4px
|
||||||
a
|
a
|
||||||
:color #000
|
:color #000 !important
|
||||||
|
:font
|
||||||
|
:weight bold !important
|
||||||
|
|
||||||
.content
|
.content
|
||||||
:padding
|
:padding
|
||||||
|
|
@ -146,6 +156,8 @@ ul
|
||||||
:bottom 24px
|
:bottom 24px
|
||||||
a
|
a
|
||||||
:color #000
|
:color #000
|
||||||
|
:font
|
||||||
|
:weight bold !important
|
||||||
|
|
||||||
img
|
img
|
||||||
:float left
|
:float left
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue