Minor style fixes for edit details. Fixes #811
parent
05b6903cae
commit
600b2b4534
|
@ -15,8 +15,9 @@ block content
|
||||||
|
|
||||||
section.us-story-main-data
|
section.us-story-main-data
|
||||||
div.us-title(ng-class="{blocked: issue.is_blocked}")
|
div.us-title(ng-class="{blocked: issue.is_blocked}")
|
||||||
span.us-number(tg-bo-ref="issue.ref")
|
div.us-edit-name-inner
|
||||||
input(type="text", ng-model="issue.subject", data-required="true", data-maxlength="500")
|
span.us-number(tg-bo-ref="issue.ref")
|
||||||
|
input(type="text", ng-model="issue.subject", data-required="true", data-maxlength="500")
|
||||||
p.block-desc-container(ng-show="issue.is_blocked")
|
p.block-desc-container(ng-show="issue.is_blocked")
|
||||||
span.block-description-title Blocked
|
span.block-description-title Blocked
|
||||||
span.block-description(tg-bind-html="issue.blocked_note || 'This issue is blocked'")
|
span.block-description(tg-bind-html="issue.blocked_note || 'This issue is blocked'")
|
||||||
|
|
|
@ -15,8 +15,9 @@ block content
|
||||||
|
|
||||||
section.us-story-main-data
|
section.us-story-main-data
|
||||||
div.us-title(ng-class="{blocked: task.is_blocked}")
|
div.us-title(ng-class="{blocked: task.is_blocked}")
|
||||||
span.us-number(tg-bo-ref="task.ref")
|
div.us-edit-name-inner
|
||||||
input(type="text", ng-model="task.subject", data-required="true", data-maxlength="500")
|
span.us-number(tg-bo-ref="task.ref")
|
||||||
|
input(type="text", ng-model="task.subject", data-required="true", data-maxlength="500")
|
||||||
p.block-desc-container(ng-show="task.is_blocked")
|
p.block-desc-container(ng-show="task.is_blocked")
|
||||||
span.block-description-title Blocked
|
span.block-description-title Blocked
|
||||||
span.block-description(tg-bind-html="task.blocked_note || 'This task is blocked'")
|
span.block-description(tg-bind-html="task.blocked_note || 'This task is blocked'")
|
||||||
|
|
|
@ -15,8 +15,9 @@ block content
|
||||||
|
|
||||||
section.us-story-main-data
|
section.us-story-main-data
|
||||||
div.us-title(ng-class="{blocked: us.is_blocked}")
|
div.us-title(ng-class="{blocked: us.is_blocked}")
|
||||||
span.us-number(tg-bo-ref="us.ref")
|
div.us-edit-name-inner
|
||||||
input(type="text", ng-model="us.subject", data-required="true", data-maxlength="500")
|
span.us-number(tg-bo-ref="us.ref")
|
||||||
|
input(type="text", ng-model="us.subject", data-required="true", data-maxlength="500")
|
||||||
p.block-desc-container(ng-show="us.is_blocked")
|
p.block-desc-container(ng-show="us.is_blocked")
|
||||||
span.block-description-title Blocked
|
span.block-description-title Blocked
|
||||||
span.block-description(tg-bind-html="us.blocked_note || 'This US is blocked'")
|
span.block-description(tg-bind-html="us.blocked_note || 'This US is blocked'")
|
||||||
|
|
|
@ -35,8 +35,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.us-edit-name-inner {
|
||||||
|
@include table-flex();
|
||||||
|
}
|
||||||
input {
|
input {
|
||||||
background: $white;
|
background: $white;
|
||||||
|
@include table-flex-child(1, 90%, 0);
|
||||||
}
|
}
|
||||||
.us-title-text {
|
.us-title-text {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in New Issue