From 70b793eb7a800c326c35ba5e72cf5f0a3af5e749 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Sun, 13 Oct 2013 11:00:51 +0300 Subject: [PATCH] Lighter border color for ui-box. Show closed keyword for issues list --- app/assets/stylesheets/gitlab_bootstrap/blocks.scss | 2 +- app/assets/stylesheets/sections/commits.scss | 3 +-- app/assets/stylesheets/sections/dashboard.scss | 2 +- app/views/projects/issues/_issue.html.haml | 3 +++ 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app/assets/stylesheets/gitlab_bootstrap/blocks.scss b/app/assets/stylesheets/gitlab_bootstrap/blocks.scss index fcf1159..f0a77bb 100644 --- a/app/assets/stylesheets/gitlab_bootstrap/blocks.scss +++ b/app/assets/stylesheets/gitlab_bootstrap/blocks.scss @@ -12,7 +12,7 @@ .ui-box { background: #FFF; margin-bottom: 20px; - border: 1px solid #CCC; + border: 1px solid #DDD; word-wrap: break-word; &.small-box { diff --git a/app/assets/stylesheets/sections/commits.scss b/app/assets/stylesheets/sections/commits.scss index be6fb29..45a83cb 100644 --- a/app/assets/stylesheets/sections/commits.scss +++ b/app/assets/stylesheets/sections/commits.scss @@ -419,7 +419,6 @@ .commit-title { margin: 0; font-size: 20px; - font-weight: bold; } .commit-description { @@ -505,4 +504,4 @@ li.commit { @extend .cgray; } } -} \ No newline at end of file +} diff --git a/app/assets/stylesheets/sections/dashboard.scss b/app/assets/stylesheets/sections/dashboard.scss index 3f7825d..04df765 100644 --- a/app/assets/stylesheets/sections/dashboard.scss +++ b/app/assets/stylesheets/sections/dashboard.scss @@ -60,7 +60,7 @@ } a { - border-color: #CCC !important; + border-color: #DDD !important; } } } diff --git a/app/views/projects/issues/_issue.html.haml b/app/views/projects/issues/_issue.html.haml index b9a2c18..effad71 100644 --- a/app/views/projects/issues/_issue.html.haml +++ b/app/views/projects/issues/_issue.html.haml @@ -6,6 +6,9 @@ .issue-title %span.light= "##{issue.iid}" = 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 - if issue.assignee -- libgit2 0.21.2