diff --git a/app/partials/views/components/kanban-task.jade b/app/partials/views/components/kanban-task.jade index 46eb1a59..968fb498 100644 --- a/app/partials/views/components/kanban-task.jade +++ b/app/partials/views/components/kanban-task.jade @@ -3,6 +3,7 @@ div.kanban-tagline div.kanban-task-inner div(tg-kanban-user-avatar="us.assigned_to", click="ctrl.changeUsAssignedTo(us)") div.task-text + span.task-assigned Username span.task-num(tg-bo-ref="us.ref") a.task-name(href="", title="", tg-bind-html="us.subject", tg-nav="project-userstories-detail:project=project.slug,ref=us.ref") diff --git a/app/styles/components/kanban-task.scss b/app/styles/components/kanban-task.scss index 19a7ddde..12437337 100644 --- a/app/styles/components/kanban-task.scss +++ b/app/styles/components/kanban-task.scss @@ -1,6 +1,5 @@ .kanban-task { background: $postit; - margin-bottom: 1rem; position: relative; &:last-child { margin: 0; @@ -46,8 +45,22 @@ top: -6px; white-space: nowrap; width: 50px; + display: none; } } + .task-assigned { + @extend %small; + color: $postit-dark-hover; + display: block; + } + .task-num { + color: $grayer; + margin-right: .5em; + } + .task-name { + @extend %bold; + color: $grayer; + } .task-text { @include table-flex-child($flex-grow: 10, $flex-basis: 50px); @extend %small; diff --git a/app/styles/modules/kanban/kanban-table.scss b/app/styles/modules/kanban/kanban-table.scss index 11388ad4..2b914460 100644 --- a/app/styles/modules/kanban/kanban-table.scss +++ b/app/styles/modules/kanban/kanban-table.scss @@ -59,7 +59,6 @@ $column-margin: 0 10px 0 0; @include table-flex-child($column-flex, $column-width, $column-shrink, $column-width); margin: $column-margin; overflow-y: auto; - padding: 1rem; &:last-child { margin-right: 0; }