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
@@ -12,7 +12,7 @@ | @@ -12,7 +12,7 @@ | ||
12 | .ui-box { | 12 | .ui-box { |
13 | background: #FFF; | 13 | background: #FFF; |
14 | margin-bottom: 20px; | 14 | margin-bottom: 20px; |
15 | - border: 1px solid #CCC; | 15 | + border: 1px solid #DDD; |
16 | word-wrap: break-word; | 16 | word-wrap: break-word; |
17 | 17 | ||
18 | &.small-box { | 18 | &.small-box { |
app/assets/stylesheets/sections/commits.scss
@@ -419,7 +419,6 @@ | @@ -419,7 +419,6 @@ | ||
419 | .commit-title { | 419 | .commit-title { |
420 | margin: 0; | 420 | margin: 0; |
421 | font-size: 20px; | 421 | font-size: 20px; |
422 | - font-weight: bold; | ||
423 | } | 422 | } |
424 | 423 | ||
425 | .commit-description { | 424 | .commit-description { |
@@ -505,4 +504,4 @@ li.commit { | @@ -505,4 +504,4 @@ li.commit { | ||
505 | @extend .cgray; | 504 | @extend .cgray; |
506 | } | 505 | } |
507 | } | 506 | } |
508 | -} | ||
509 | \ No newline at end of file | 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 +6,9 @@ | ||
6 | .issue-title | 6 | .issue-title |
7 | %span.light= "##{issue.iid}" | 7 | %span.light= "##{issue.iid}" |
8 | = link_to_gfm truncate(issue.title, length: 100), project_issue_path(issue.project, issue), class: "row_title" | 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 | .issue-info | 13 | .issue-info |
11 | - if issue.assignee | 14 | - if issue.assignee |