Commit 70b793eb7a800c326c35ba5e72cf5f0a3af5e749
1 parent
995ce5fd
Exists in
master
and in
4 other branches
Lighter border color for ui-box. Show closed keyword for issues list
Showing
4 changed files
with
6 additions
and
4 deletions
Show diff stats
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
app/assets/stylesheets/sections/commits.scss
... | ... | @@ -419,7 +419,6 @@ |
419 | 419 | .commit-title { |
420 | 420 | margin: 0; |
421 | 421 | font-size: 20px; |
422 | - font-weight: bold; | |
423 | 422 | } |
424 | 423 | |
425 | 424 | .commit-description { |
... | ... | @@ -505,4 +504,4 @@ li.commit { |
505 | 504 | @extend .cgray; |
506 | 505 | } |
507 | 506 | } |
508 | -} | |
509 | 507 | \ No newline at end of file |
508 | +} | ... | ... |
app/assets/stylesheets/sections/dashboard.scss
app/views/projects/issues/_issue.html.haml
... | ... | @@ -6,6 +6,9 @@ |
6 | 6 | .issue-title |
7 | 7 | %span.light= "##{issue.iid}" |
8 | 8 | = link_to_gfm truncate(issue.title, length: 100), project_issue_path(issue.project, issue), class: "row_title" |
9 | + - if issue.closed? | |
10 | + %small.pull-right | |
11 | + = "CLOSED" | |
9 | 12 | |
10 | 13 | .issue-info |
11 | 14 | - if issue.assignee | ... | ... |