fix #3409 - same size for all roles
parent
2cdf9e5f35
commit
c4448ac8cc
|
@ -53,7 +53,7 @@ div.wrapper(tg-backlog, ng-controller="BacklogController as ctrl",
|
||||||
div.empty-backlog(ng-class="{'hidden': userstories.length}", tg-backlog-empty-sortable)
|
div.empty-backlog(ng-class="{'hidden': userstories.length}", tg-backlog-empty-sortable)
|
||||||
img(
|
img(
|
||||||
src="/images/backlog-empty.png"
|
src="/images/backlog-empty.png"
|
||||||
alt="{{'BACKLOG.EMPTY' | translate}}"
|
alt="{{'BACKLOG.EMPTY' | translate}}"
|
||||||
)
|
)
|
||||||
p.title(translate="BACKLOG.EMPTY")
|
p.title(translate="BACKLOG.EMPTY")
|
||||||
a(href="", title="{{'BACKLOG.CREATE_NEW_US' | translate}}"
|
a(href="", title="{{'BACKLOG.CREATE_NEW_US' | translate}}"
|
||||||
|
@ -65,7 +65,7 @@ div.wrapper(tg-backlog, ng-controller="BacklogController as ctrl",
|
||||||
sidebar.menu-secondary.sidebar
|
sidebar.menu-secondary.sidebar
|
||||||
include ../includes/modules/sprints
|
include ../includes/modules/sprints
|
||||||
|
|
||||||
div.lightbox.lightbox-generic-form(tg-lb-create-edit-userstory)
|
div.lightbox.lightbox-generic-form.lb-create-edit-userstory(tg-lb-create-edit-userstory)
|
||||||
include ../includes/modules/lightbox-us-create-edit
|
include ../includes/modules/lightbox-us-create-edit
|
||||||
|
|
||||||
div.lightbox.lightbox-generic-bulk(tg-lb-create-bulk-userstories)
|
div.lightbox.lightbox-generic-bulk(tg-lb-create-bulk-userstories)
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
.points-per-role {
|
.points-per-role {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
.ticket-role-points {
|
.ticket-role-points {
|
||||||
background: rgba($gray-light, .1);
|
background: rgba($gray-light, .1);
|
||||||
|
|
|
@ -488,9 +488,15 @@
|
||||||
|
|
||||||
.lb-create-edit-userstory {
|
.lb-create-edit-userstory {
|
||||||
.ticket-role-points {
|
.ticket-role-points {
|
||||||
flex-basis: 10%;
|
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
flex-shrink: 1;
|
flex-shrink: 1;
|
||||||
|
max-width: calc(100% * (1/5) - .2rem);
|
||||||
|
&:first-child {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
&:nth-child(5n+5) {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.points-per-role {
|
.points-per-role {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
.ticket-estimation {
|
.ticket-estimation {
|
||||||
.ticket-role-points {
|
.ticket-role-points {
|
||||||
|
max-width: 25%;
|
||||||
&:first-child {
|
&:first-child {
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|
Loading…
Reference in New Issue