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