- <%= image_tag(url_to_avatar(news.author), :class => "avatar") %> |
+ <%=link_to image_tag(url_to_avatar(news.author), :class => "avatar"), user_path(news.author) %> |
<%=link_to_user(news.author)if news.respond_to?(:author) %> <%= l(:label_project_newshare)%> <%= link_to h(news.title), news_path(news) %> |
diff --git a/app/views/projects/_project.html.erb b/app/views/projects/_project.html.erb
index fa0a8b75a..84525e3d9 100644
--- a/app/views/projects/_project.html.erb
+++ b/app/views/projects/_project.html.erb
@@ -1,7 +1,7 @@
- <%= image_tag(url_to_avatar(project), :class => "avatar2") %>
+ <%=link_to image_tag(url_to_avatar(project), :class => "avatar2"), project_path(project) %>
diff --git a/app/views/users/watch_bids.html.erb b/app/views/users/watch_bids.html.erb
index b12c03c10..749245741 100644
--- a/app/views/users/watch_bids.html.erb
+++ b/app/views/users/watch_bids.html.erb
@@ -7,7 +7,7 @@
- <%= link_to image_tag(url_to_avatar(bid.author), :class => 'avatar'), :class => "avatar" %> |
+ <%= link_to image_tag(url_to_avatar(bid.author), :class => 'avatar'),user_path(bid.author), :class => "avatar" %> |
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 4e94fb2a9..194d9a6a7 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -1491,7 +1491,7 @@ p.progress-info {clear: left; font-size: 80%; margin-top:-4px; color:#777;}
#content .tabs ul li a.selected {
background-color: #fff;
border: 1px solid #15BCCF;
-
+ border-bottom: 1px solid #fff;
color:#111;
}
| |