Commit 70b793eb7a800c326c35ba5e72cf5f0a3af5e749

Authored by Dmitriy Zaporozhets
1 parent 995ce5fd

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

app/assets/stylesheets/gitlab_bootstrap/blocks.scss
... ... @@ -12,7 +12,7 @@
12 12 .ui-box {
13 13 background: #FFF;
14 14 margin-bottom: 20px;
15   - border: 1px solid #CCC;
  15 + border: 1px solid #DDD;
16 16 word-wrap: break-word;
17 17  
18 18 &.small-box {
... ...
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
... ... @@ -60,7 +60,7 @@
60 60 }
61 61  
62 62 a {
63   - border-color: #CCC !important;
  63 + border-color: #DDD !important;
64 64 }
65 65 }
66 66 }
... ...
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
... ...