Improve Taskboard UX. Issues block separation
parent
3b9081252c
commit
72bbf32e73
|
@ -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": "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": "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": {
|
||||
|
|
|
@ -16,7 +16,6 @@ div.summary.large-summary
|
|||
span.description(translate="BACKLOG.SPRINT_SUMMARY.COMPLETED_POINTS")
|
||||
|
||||
div.summary-stats.summary-open-tasks
|
||||
tg-svg(svg-icon="icon-bulk")
|
||||
span.number(ng-bind="stats.openTasks|default:'--'")
|
||||
span.description(translate="BACKLOG.SPRINT_SUMMARY.OPEN_TASKS")
|
||||
div.summary-stats.summary-closed-tasks
|
||||
|
|
|
@ -178,9 +178,11 @@ $column-padding: .5rem 1rem;
|
|||
}
|
||||
}
|
||||
&.issues-row {
|
||||
margin-top: 1em;
|
||||
.taskboard-cards-box {
|
||||
align-content: flex-start;
|
||||
align-items: flex-start;
|
||||
border-top: 3px solid $gray-light;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
|
@ -205,6 +207,7 @@ $column-padding: .5rem 1rem;
|
|||
.card {
|
||||
cursor: default;
|
||||
height: auto;
|
||||
margin: .3rem .1rem .3rem .5rem;
|
||||
}
|
||||
}
|
||||
&.issues-row:not(.row-fold) {
|
||||
|
|
Loading…
Reference in New Issue