From c6397a87287f8a6559203938b5ea22f33208b0ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Wed, 27 Aug 2014 13:18:28 +0200 Subject: [PATCH] Broken words when too big to fit in tasks. Fixes #768 --- app/styles/components/kanban-task.scss | 2 ++ app/styles/components/taskboard-task.scss | 1 + 2 files changed, 3 insertions(+) diff --git a/app/styles/components/kanban-task.scss b/app/styles/components/kanban-task.scss index 91ad68d7..c5d66cc9 100644 --- a/app/styles/components/kanban-task.scss +++ b/app/styles/components/kanban-task.scss @@ -57,11 +57,13 @@ .task-name { @extend %bold; color: $grayer; + word-wrap: break-word; } .task-text { @include table-flex-child($flex-grow: 10, $flex-basis: 50px); @extend %small; padding: 0 .5rem 0 1rem; + word-wrap: break-word; } .task-points { @extend %small; diff --git a/app/styles/components/taskboard-task.scss b/app/styles/components/taskboard-task.scss index 8e5e709d..5e0ea38f 100644 --- a/app/styles/components/taskboard-task.scss +++ b/app/styles/components/taskboard-task.scss @@ -89,6 +89,7 @@ @extend %small; @include table-flex-child($flex-grow: 10, $flex-basis: 50px); padding: 0 .5rem 0 1rem; + word-wrap: break-word; } .icon { @include transition(color .3s linear, opacity .3s linear);