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
|
||||
= t('ago', :time => time_ago_in_words(@status_message.created_at))
|
||||
|
||||
%br
|
||||
- if current_user.owns? @status_message
|
||||
= link_to t('.destroy'), @status_message, :confirm => t('are_you_sure'), :method => :delete
|
||||
%br
|
||||
- if current_user.owns? @status_message
|
||||
= link_to t('.destroy'), @status_message, :confirm => t('are_you_sure'), :method => :delete
|
||||
|
||||
.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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
a
|
||||
$blue: #3F8FBA
|
||||
|
||||
a:not([role='button'])
|
||||
:text
|
||||
:decoration none
|
||||
:font
|
||||
:weight normal
|
||||
:weight normal !important
|
||||
:color $blue !important
|
||||
|
||||
#landing_content
|
||||
:text-align center
|
||||
|
|
@ -66,7 +74,9 @@ a
|
|||
:margin
|
||||
:bottom 4px
|
||||
a
|
||||
:color #000
|
||||
:color #000 !important
|
||||
:font
|
||||
:weight bold !important
|
||||
|
||||
.content
|
||||
:padding
|
||||
|
|
@ -146,6 +156,8 @@ ul
|
|||
:bottom 24px
|
||||
a
|
||||
:color #000
|
||||
:font
|
||||
:weight bold !important
|
||||
|
||||
img
|
||||
:float left
|
||||
|
|
|
|||
Loading…
Reference in a new issue