Commit 4dff27ec authored by Rubén Dávila's avatar Rubén Dávila

Adjust Issues tab to new design.

parent 2ac744e9
......@@ -42,3 +42,23 @@ li.milestone {
float: right;
width: 105px;
}
.issues-sortable-list {
.issue-detail {
display: block;
.issue-number{
color: #D1D1D1;
margin-right: 5px;
}
.color-label {
padding: 8px;
margin-right: 7px;
margin-top: 10px;
}
.avatar {
float: none;
}
}
}
%li{ id: dom_id(issue, 'sortable'), class: 'issue-row', 'data-iid' => issue.iid, 'data-url' => issue_path(issue) }
.pull-right.assignee-icon
%span
= link_to_gfm issue.title, [@project.namespace.becomes(Namespace), @project, issue], title: issue.title
.issue-detail
= link_to [@project.namespace.becomes(Namespace), @project, issue] do
%span.issue-number ##{issue.iid}
- issue.labels.each do |label|
= render_colored_label(label)
- if issue.assignee
= image_tag avatar_icon(issue.assignee, 16), class: "avatar s24", alt: ''
%span
= link_to [@project.namespace.becomes(Namespace), @project, issue] do
%span.cgray ##{issue.iid}
= link_to_gfm issue.title, [@project.namespace.becomes(Namespace), @project, issue], title: issue.title
.panel.panel-default
.panel-heading= title
.panel-heading
%strong= title
%strong.pull-right= issues.size
%ul{ class: "well-list issues-sortable-list", id: "issues-list-#{id}", "data-state" => id }
- issues.sort_by(&:position).each do |issue|
= render 'issue', issue: issue
%li.light.ui-sort-disabled Drag and drop available
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment