Commit 4d149ac8a9103f5249eb8641879b8643304723a0
1 parent
2864aca4
Exists in
master
and in
4 other branches
Dark color for group name at header. Better name for activity
Showing
2 changed files
with
5 additions
and
2 deletions
Show diff stats
app/assets/stylesheets/sections/header.scss
@@ -155,7 +155,10 @@ header { | @@ -155,7 +155,10 @@ header { | ||
155 | } | 155 | } |
156 | .project_name { | 156 | .project_name { |
157 | a { | 157 | a { |
158 | - color: #FFF; | 158 | + color: #DDD; |
159 | + &:hover { | ||
160 | + color: #FFF; | ||
161 | + } | ||
159 | } | 162 | } |
160 | color: #fff; | 163 | color: #fff; |
161 | text-shadow: 0 1px 1px #444; | 164 | text-shadow: 0 1px 1px #444; |
app/views/users/show.html.haml
@@ -14,7 +14,7 @@ | @@ -14,7 +14,7 @@ | ||
14 | %small member since #{@user.created_at.stamp("Nov 12, 2031")} | 14 | %small member since #{@user.created_at.stamp("Nov 12, 2031")} |
15 | .clearfix | 15 | .clearfix |
16 | %hr | 16 | %hr |
17 | - %h5 Recent events | 17 | + %h5 User Activity: |
18 | = render @events | 18 | = render @events |
19 | .span4 | 19 | .span4 |
20 | = render 'profile', user: @user | 20 | = render 'profile', user: @user |