Minor style fixes for edit details. Fixes #811

stable
Xavier Julián 2014-09-05 13:08:04 +02:00
parent 05b6903cae
commit 600b2b4534
4 changed files with 13 additions and 6 deletions

View File

@ -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'")

View File

@ -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'")

View File

@ -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'")

View File

@ -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;