Commit 70b793eb authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Lighter border color for ui-box. Show closed keyword for issues list

parent 995ce5fd
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
.ui-box { .ui-box {
background: #FFF; background: #FFF;
margin-bottom: 20px; margin-bottom: 20px;
border: 1px solid #CCC; border: 1px solid #DDD;
word-wrap: break-word; word-wrap: break-word;
&.small-box { &.small-box {
......
...@@ -419,7 +419,6 @@ ...@@ -419,7 +419,6 @@
.commit-title { .commit-title {
margin: 0; margin: 0;
font-size: 20px; font-size: 20px;
font-weight: bold;
} }
.commit-description { .commit-description {
...@@ -505,4 +504,4 @@ li.commit { ...@@ -505,4 +504,4 @@ li.commit {
@extend .cgray; @extend .cgray;
} }
} }
} }
\ No newline at end of file
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
} }
a { a {
border-color: #CCC !important; border-color: #DDD !important;
} }
} }
} }
......
...@@ -6,6 +6,9 @@ ...@@ -6,6 +6,9 @@
.issue-title .issue-title
%span.light= "##{issue.iid}" %span.light= "##{issue.iid}"
= link_to_gfm truncate(issue.title, length: 100), project_issue_path(issue.project, issue), class: "row_title" = link_to_gfm truncate(issue.title, length: 100), project_issue_path(issue.project, issue), class: "row_title"
- if issue.closed?
%small.pull-right
= "CLOSED"
.issue-info .issue-info
- if issue.assignee - if issue.assignee
......
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