diff --git a/app/views/projects/_members_box.html.erb b/app/views/projects/_members_box.html.erb old mode 100644 new mode 100755 index 7ac4b2c..1a088ea --- a/app/views/projects/_members_box.html.erb +++ b/app/views/projects/_members_box.html.erb @@ -1,6 +1,6 @@ <% if @users_by_role.any? %>
-

<%=l(:label_member_plural)%>

+

<%=l(:label_member_plural)%>

<% @users_by_role.keys.sort.each do |role| %>

<%= role %>: <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ").html_safe %>

<% end %> diff --git a/app/views/projects/show.html.erb b/app/views/projects/show.html.erb old mode 100644 new mode 100755 index d0d83e2..87e398e --- a/app/views/projects/show.html.erb +++ b/app/views/projects/show.html.erb @@ -36,7 +36,7 @@ <% if User.current.allowed_to?(:view_issues, @project) %>
-

<%=l(:label_issue_tracking)%>

+

<%=l(:label_issue_tracking)%>

<% if @trackers.present? %> @@ -78,10 +78,10 @@

<% end %> - + <% if User.current.allowed_to?(:view_time_entries, @project) %>
-

<%= l(:label_spent_time) %>

+

<%= l(:label_spent_time) %>

<% if @total_hours.present? %>

<%= l_hours(@total_hours) %>

<% end %> @@ -102,7 +102,7 @@ <% if @news.any? && authorize_for('news', 'index') %>
-

<%=l(:label_news_latest)%>

+

<%=l(:label_news_latest)%>

<%= render :partial => 'news/news', :collection => @news %>

<%= link_to l(:label_news_view_all), project_news_index_path(@project) %>

@@ -110,7 +110,7 @@ <% if @subprojects.any? %>
-

<%=l(:label_subproject_plural)%>

+

<%=l(:label_subproject_plural)%>

<%= @subprojects.collect{|p| link_to p, project_path(p), :class => p.css_classes}.join(", ").html_safe %>
<% end %> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index cf6f816..8ac3098 100755 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -313,12 +313,6 @@ td.center {text-align:center;} h3.version { background: url(../images/package.png) no-repeat 0% 50%; padding-left: 20px; } -div.issues h3 { background: url(../images/ticket.png) no-repeat 0% 50%; padding-left: 20px; } -div.members h3 { background: url(../images/group.png) no-repeat 0% 50%; padding-left: 20px; } -div.news h3 { background: url(../images/news.png) no-repeat 0% 50%; padding-left: 20px; } -div.projects h3 { background: url(../images/projects.png) no-repeat 0% 50%; padding-left: 20px; } -div.spent_time h3 { background: url(../images/time.png) no-repeat 0% 50%; padding-left: 20px; } - #watchers select {width: 95%; display: block;} #watchers a.delete {opacity: 0.4; margin-left: 5px;} #watchers a.delete:hover {opacity: 1;} @@ -1210,6 +1204,7 @@ div.wiki img {vertical-align:middle; max-width:100%;} .icon-workflows { background-image: url(../images/ticket_go.png); } .icon-custom-fields { background-image: url(../images/textfield.png); } .icon-plugins { background-image: url(../images/plugin.png); } +.icon-news { background-image: url(../images/news.png); } .icon-file { background-image: url(../images/files/default.png); } .icon-file.text-plain { background-image: url(../images/files/text.png); }