Adds a class ('me') to events of the activity view created by current user.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1578 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
28c094f50e
commit
dc57b06b6c
|
@ -6,7 +6,8 @@
|
|||
<h3><%= format_activity_day(day) %></h3>
|
||||
<dl>
|
||||
<% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| -%>
|
||||
<dt class="<%= e.event_type %>"><span class="time"><%= format_time(e.event_datetime, false) %></span>
|
||||
<dt class="<%= e.event_type %> <%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>">
|
||||
<span class="time"><%= format_time(e.event_datetime, false) %></span>
|
||||
<%= content_tag('span', h(e.project), :class => 'project') if @project.nil? || @project != e.project %>
|
||||
<%= link_to format_activity_title(e.event_title), e.event_url %></dt>
|
||||
<dd><span class="description"><%= format_activity_description(e.event_description) %></span>
|
||||
|
|
|
@ -181,6 +181,7 @@ div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
|
|||
div#activity dl, #search-results { margin-left: 2em; }
|
||||
div#activity dd { margin-bottom: 1em; padding-left: 18px; }
|
||||
div#activity dt, #search-results dt { margin-bottom: 1px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; }
|
||||
div#activity dt.me .time { border-bottom: 1px solid #999; }
|
||||
div#activity dt .time { color: #777; font-size: 80%; }
|
||||
div#activity dd .description, #search-results dd .description { font-style: italic; }
|
||||
div#activity span.project:after, #search-results span.project:after { content: " -"; }
|
||||
|
|
Loading…
Reference in New Issue