Merge pull request #542 from dod-ccpo/fix-alignment-ie
Fix layout for task order view page in IE
This commit is contained in:
commit
5aa6f68618
@ -47,13 +47,8 @@
|
|||||||
|
|
||||||
.task-order-summary {
|
.task-order-summary {
|
||||||
|
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
@include ie-only {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.label--pending {
|
.label--pending {
|
||||||
@ -105,6 +100,10 @@
|
|||||||
padding-right: $gap;
|
padding-right: $gap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include ie-only {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.task-order-next-steps__step {
|
.task-order-next-steps__step {
|
||||||
.task-order-next-steps__icon {
|
.task-order-next-steps__icon {
|
||||||
padding: $gap $gap 0 0;
|
padding: $gap $gap 0 0;
|
||||||
@ -117,6 +116,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.task-order-next-steps__text {
|
||||||
|
@include ie-only {
|
||||||
|
width: 100%
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.task-order-next-steps__heading {
|
.task-order-next-steps__heading {
|
||||||
h4 {
|
h4 {
|
||||||
margin: $gap $gap 0 0;
|
margin: $gap $gap 0 0;
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<div class="task-order-next-steps__icon col">
|
<div class="task-order-next-steps__icon col">
|
||||||
<span>{{ Icon("ok", classes="complete" if complete else "incomplete") }}</span>
|
<span>{{ Icon("ok", classes="complete" if complete else "incomplete") }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="task-order-next-steps__text">
|
||||||
<div class="task-order-next-steps__heading row">
|
<div class="task-order-next-steps__heading row">
|
||||||
<h4>{{ title }}</h4>
|
<h4>{{ title }}</h4>
|
||||||
{% if link_url %}
|
{% if link_url %}
|
||||||
@ -70,7 +70,7 @@
|
|||||||
<dt>Started</dt>
|
<dt>Started</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<local-datetime
|
<local-datetime
|
||||||
timestamp="{{ task_order.start_date }}"
|
timestamp="{{ task_order.time_created }}"
|
||||||
format="M/D/YYYY">
|
format="M/D/YYYY">
|
||||||
</local-datetime>
|
</local-datetime>
|
||||||
</dd>
|
</dd>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user