Improve Taskboard UX. Issues block separation

stable
Daniel García 2018-11-22 17:04:57 +01:00 committed by Alex Hermida
parent 3b9081252c
commit 72bbf32e73
3 changed files with 4 additions and 2 deletions

View File

@ -1409,7 +1409,7 @@
"WARNING_ISSUES_NOT_MOVED_TITLE": "You just moved all user stories and taks, and the sprint'll be closed", "WARNING_ISSUES_NOT_MOVED_TITLE": "You just moved all user stories and taks, and the sprint'll be closed",
"WARNING_ISSUES_NOT_MOVED": "The issues'll remain in the sprint and don't be removed", "WARNING_ISSUES_NOT_MOVED": "The issues'll remain in the sprint and don't be removed",
"WARNING_SPRINT_STILL_OPEN_TITLE": "{total, plural, one{You just moved # item!} other{You just moved # items!}}", "WARNING_SPRINT_STILL_OPEN_TITLE": "{total, plural, one{You just moved # item!} other{You just moved # items!}}",
"WARNING_SPRINT_STILL_OPEN": "Please note that <strong>the sprint {{sprintName}} will remain open</strong> as long as it contains unfinished items." "WARNING_SPRINT_STILL_OPEN": "Please note that the sprint {{sprintName}} <strong>will remain open</strong> as long as it contains unfinished items."
} }
}, },
"TASK": { "TASK": {

View File

@ -16,7 +16,6 @@ div.summary.large-summary
span.description(translate="BACKLOG.SPRINT_SUMMARY.COMPLETED_POINTS") span.description(translate="BACKLOG.SPRINT_SUMMARY.COMPLETED_POINTS")
div.summary-stats.summary-open-tasks div.summary-stats.summary-open-tasks
tg-svg(svg-icon="icon-bulk")
span.number(ng-bind="stats.openTasks|default:'--'") span.number(ng-bind="stats.openTasks|default:'--'")
span.description(translate="BACKLOG.SPRINT_SUMMARY.OPEN_TASKS") span.description(translate="BACKLOG.SPRINT_SUMMARY.OPEN_TASKS")
div.summary-stats.summary-closed-tasks div.summary-stats.summary-closed-tasks

View File

@ -178,9 +178,11 @@ $column-padding: .5rem 1rem;
} }
} }
&.issues-row { &.issues-row {
margin-top: 1em;
.taskboard-cards-box { .taskboard-cards-box {
align-content: flex-start; align-content: flex-start;
align-items: flex-start; align-items: flex-start;
border-top: 3px solid $gray-light;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
@ -205,6 +207,7 @@ $column-padding: .5rem 1rem;
.card { .card {
cursor: default; cursor: default;
height: auto; height: auto;
margin: .3rem .1rem .3rem .5rem;
} }
} }
&.issues-row:not(.row-fold) { &.issues-row:not(.row-fold) {