summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2016-09-19 10:17:10 -0500
committerClement Ho <ClemMakesApps@gmail.com>2016-10-01 20:27:39 -0500
commit0968a29fcc5636766c3e3e5f89029302dbe920e9 (patch)
treee3fba8477ef8de21b15264bf16737a0bef16e306
parent1fed97530af84b7660e45a9a8d4e3dafbed026f7 (diff)
downloadgitlab-ce-0968a29fcc5636766c3e3e5f89029302dbe920e9.tar.gz
Add word-wrap to issue title on issue and milestone boards
-rw-r--r--CHANGELOG1
-rw-r--r--app/assets/stylesheets/pages/boards.scss1
-rw-r--r--app/assets/stylesheets/pages/milestone.scss1
3 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 1cb9b8acf51..b5b58a47b6e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -12,6 +12,7 @@ v 8.13.0 (unreleased)
- Expose expires_at field when sharing project on API
- Allow the Koding integration to be configured through the API
- Added soft wrap button to repository file/blob editor
+ - Add word-wrap to issue title on issue and milestone boards (ClemMakesApps)
- Fix robots.txt disallowing access to groups starting with "s" (Matt Harrison)
- Close open merge request without source project (Katarzyna Kobierska Ula Budziszewska)
- Use a ConnectionPool for Rails.cache on Sidekiq servers
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss
index 9c84dceed05..ecc5b24e360 100644
--- a/app/assets/stylesheets/pages/boards.scss
+++ b/app/assets/stylesheets/pages/boards.scss
@@ -197,6 +197,7 @@ lex
a {
color: inherit;
+ word-wrap: break-word;
}
}
diff --git a/app/assets/stylesheets/pages/milestone.scss b/app/assets/stylesheets/pages/milestone.scss
index 6b865730487..8c2ba3ed58c 100644
--- a/app/assets/stylesheets/pages/milestone.scss
+++ b/app/assets/stylesheets/pages/milestone.scss
@@ -33,6 +33,7 @@
// Issue title
span a {
color: $gl-text-color;
+ word-wrap: break-word;
}
}
}