Merge pull request #543 from dod-ccpo/update-to-form-part-2

Update Task Order Form - Part 2
This commit is contained in:
leigh-mil
2019-01-17 10:53:43 -05:00
committed by GitHub
17 changed files with 402 additions and 201 deletions

View File

@@ -38,6 +38,7 @@
@import 'components/budget_chart';
@import 'components/audit_log';
@import 'components/usa_banner';
@import 'components/checklist';
@import 'sections/login';
@import 'sections/home';

View File

@@ -0,0 +1,9 @@
.checklist {
padding-left: 0;
list-style: none;
margin-top: 5px;
li {
margin-bottom: 0;
}
}

View File

@@ -68,4 +68,8 @@
opacity: 0.3;
pointer-events: none;
}
&.icon-link--left {
padding-left: 0;
}
}

View File

@@ -55,7 +55,19 @@
@include icon-size(24);
}
&.icon--remove {
&.icon--remove, &.icon--red {
@include icon-color($color-red);
}
&.icon--green {
@include icon-color($color-green);
}
&.icon--gray {
@include icon-color($color-gray);
}
&.icon--medium {
@include icon-size(12);
}
}

View File

@@ -179,3 +179,40 @@
}
}
}
.task-order-form {
.task-order-form__heading {
margin-bottom: 0;
&.inactive {
color: $color-gray-light;
}
&.subheading {
color: $color-gray;
}
}
.funding-summary__table {
tr td {
border-bottom: 0;
padding: 0.5rem 1.5rem;
.funding-summary__td {
margin-top: 0;
}
}
}
.task-order-invite-message {
&.not-sent {
color: $color-red;
font-weight: $font-bold;
}
&.sent {
color: $color-green;
font-weight: $font-bold;
}
}
}