From 6687e2e3117a7dcaea6cb898123314b5660aa304 Mon Sep 17 00:00:00 2001 From: Iago Last Date: Fri, 20 May 2016 09:06:02 +0200 Subject: [PATCH 1/2] Add word-break rule in .kanban-task This closes #1014 --- app/styles/components/kanban-task.scss | 1 + app/styles/components/taskboard-task.scss | 1 + 2 files changed, 2 insertions(+) diff --git a/app/styles/components/kanban-task.scss b/app/styles/components/kanban-task.scss index 121bcfb2..0b938f02 100644 --- a/app/styles/components/kanban-task.scss +++ b/app/styles/components/kanban-task.scss @@ -88,6 +88,7 @@ } .task-name { @include font-type(bold); + word-break: break-word; } .loading { bottom: .5rem; diff --git a/app/styles/components/taskboard-task.scss b/app/styles/components/taskboard-task.scss index 7a9e6516..3b60133e 100644 --- a/app/styles/components/taskboard-task.scss +++ b/app/styles/components/taskboard-task.scss @@ -100,6 +100,7 @@ } .task-name { @include font-type(bold); + word-break: break-word; } .taskboard-text { @include font-size(small); From d45ba022688fe457df6d0078dd06c836c7d5dc0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Mon, 23 May 2016 09:29:35 +0200 Subject: [PATCH 2/2] Add Iago Last to AUTHORS --- AUTHORS.rst | 1 + app/styles/components/kanban-task.scss | 1 - app/styles/components/taskboard-task.scss | 1 - app/styles/shame/shame.scss | 13 +++++++++++++ 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 6b5963bf..120d1e5b 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -31,3 +31,4 @@ answer newbie questions, and generally made Taiga that much better: - Ryan Swanstrom - Vlad Topala - Wil Wade +- Iago Last diff --git a/app/styles/components/kanban-task.scss b/app/styles/components/kanban-task.scss index 0b938f02..121bcfb2 100644 --- a/app/styles/components/kanban-task.scss +++ b/app/styles/components/kanban-task.scss @@ -88,7 +88,6 @@ } .task-name { @include font-type(bold); - word-break: break-word; } .loading { bottom: .5rem; diff --git a/app/styles/components/taskboard-task.scss b/app/styles/components/taskboard-task.scss index 3b60133e..7a9e6516 100644 --- a/app/styles/components/taskboard-task.scss +++ b/app/styles/components/taskboard-task.scss @@ -100,7 +100,6 @@ } .task-name { @include font-type(bold); - word-break: break-word; } .taskboard-text { @include font-size(small); diff --git a/app/styles/shame/shame.scss b/app/styles/shame/shame.scss index 35b86fc0..bdd3b817 100644 --- a/app/styles/shame/shame.scss +++ b/app/styles/shame/shame.scss @@ -26,3 +26,16 @@ svg { a[ng-click] svg { pointer-events: auto; } + +// chrome url break +.kanban-task { + .task-name { + word-break: break-word; + } +} + +.taskboard-task { + .task-name { + word-break: break-word; + } +} \ No newline at end of file