Commit 1670b3f4bd70376f68ad4fb92b642cbade690bc2

Summary style changes

Commit diff

app/views/logs/_ac_log.html.erb

 
22<% @commits.each do |commit| -%>
33 <li class="commit_item">
44 <a href=""><%= link_to h(commit.id_abbrev), project_repository_commit_path(@project, @repository, commit.id) -%></a>
5 by <strong><%=h commit.committer.name -%></strong> <%= format_datetime_ddmmyyhhmm(commit.committed_date) %> <small>(<%=h time_ago_in_words(commit.committed_date) -%> ago)</small>
5 by <strong><%=h commit.committer.name -%></strong> <span class='small_grey'><%= format_datetime_ddmmyyhhmm(commit.committed_date) %> (<%=h time_ago_in_words(commit.committed_date) -%> ago)</span>
66 <div class="commit_message"><%= simple_format(h(commit.message)) -%></div>
77 </li>
88<% end -%>
toggle raw diff

app/views/projects/ac_show.html.erb

 
77<p><%= @project.summary %> <%= link_to "[more]", project_wiki_path(@project.slug, @project.wiki_slug), :class => "small" %></p>
88
99<% unless @critical_tickets.empty? %>
10<br />
11<h3>Critical Tickets</h3>
10<h4>Critical Tickets</h4>
11<hr />
1212<ul>
1313<% for ticket in @critical_tickets %>
1414 <li><span class='red'><%= ticket.summary %></span> <span class='small_grey'>(<%= time_ago_in_words(ticket.created_at) %> ago)</span></li>
1818<% end %>
1919
2020<% unless @commits.empty? %>
21<br />
22<h3>Last Commits</h3>
21<h4>Last Commits</h4>
22<hr />
2323<%= render :partial => "logs/ac_log" -%>
2424<%= link_to "[more]", project_repository_path(@project, @repository), :class => "small" %><br />
2525<% end %>
2626
2727<% unless @messages.empty? %>
28<br />
29<h3>Recent Messages</h3>
28<h4>Recent Messages</h4>
29<hr />
3030<%= render :partial => "members/ac_list_messages", :locals => { :show_name => true } %>
3131<%= link_to "[more]", project_members_path(@project), :class => "small" %><br />
3232<% end %>
toggle raw diff

public/stylesheets/base.css

 
136136.formattedtext .small_grey { color: grey; font-size: 0.8em; }
137137.formattedtext .small { font-size: 0.8em; }
138138
139.formattedtext hr {border: none 0; border-bottom: 1px solid #ccc; width: 90%; height: 2px; margin: 0px auto 0 0; text-align: left; }
140
139141.formattedtext .highlight { background-color: yellow; }
140142
141143/* Admin section */
toggle raw diff