Colored labels for events on dashboard
This commit is contained in:
parent
a3bb9ca1fa
commit
494cd02b38
4 changed files with 19 additions and 8 deletions
|
@ -303,9 +303,20 @@ table.no-borders {
|
|||
}
|
||||
|
||||
.event_label {
|
||||
background: #FCEEC1;
|
||||
padding: 2px 2px 0;
|
||||
font-family: monospace;
|
||||
@extend .label;
|
||||
background-color: #999;
|
||||
|
||||
&.pushed {
|
||||
background-color: #3A87AD;
|
||||
}
|
||||
|
||||
&.opened {
|
||||
background-color: #468847;
|
||||
}
|
||||
|
||||
&.closed {
|
||||
background-color: #B94A48;
|
||||
}
|
||||
}
|
||||
|
||||
img.avatar {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
= image_tag gravatar_icon(event.author_email), :class => "avatar"
|
||||
%strong #{event.author_name}
|
||||
%span.event_label= event.action_name
|
||||
issue
|
||||
%span.event_label{:class => event.action_name}= event.action_name
|
||||
issue
|
||||
= link_to project_issue_path(event.project, event.issue) do
|
||||
%strong= truncate event.issue_title
|
||||
at
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
.event_icon= image_tag "event_mr_merged.png"
|
||||
= image_tag gravatar_icon(event.author_email), :class => "avatar"
|
||||
%strong #{event.author_name}
|
||||
%span.event_label= event.action_name
|
||||
merge request
|
||||
%span.event_label{:class => event.action_name}= event.action_name
|
||||
merge request
|
||||
= link_to project_merge_request_path(event.project, event.merge_request) do
|
||||
%strong= truncate event.merge_request_title
|
||||
at
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
.event_icon= image_tag "event_push.png"
|
||||
= image_tag gravatar_icon(event.author_email), :class => "avatar"
|
||||
%strong #{event.author_name}
|
||||
%span.event_label= event.push_action_name
|
||||
%span.event_label.pushed= event.push_action_name
|
||||
= event.ref_type
|
||||
= link_to project_commits_path(event.project, :ref => event.ref_name) do
|
||||
%strong= event.ref_name
|
||||
|
|
Loading…
Reference in a new issue