diff --git a/styles/components/_alerts.scss b/styles/components/_alerts.scss index 1595370b..e2da79fd 100644 --- a/styles/components/_alerts.scss +++ b/styles/components/_alerts.scss @@ -22,6 +22,14 @@ } @else if $level == 'warning' { $background-color: $color-gold-lightest; $border-color: $color-gold; + .usa-button { + background-color: $color-gold; + box-shadow: inset 0 0 0 2px $color-gold; + &:hover { + background-color: $color-gold-dark; + box-shadow: inset 0 0 0 2px $color-gold-dark; + } + } } @else if $level == 'error' { $background-color: $color-red-lightest; diff --git a/templates/requests/_new.html b/templates/requests/_new.html index fd815e68..da27e795 100644 --- a/templates/requests/_new.html +++ b/templates/requests/_new.html @@ -18,7 +18,7 @@

{% block heading %}{% endblock %}

-

New Request

+
New Request
diff --git a/templates/requests/financial_verification.html b/templates/requests/financial_verification.html index d2a24409..07bd8eee 100644 --- a/templates/requests/financial_verification.html +++ b/templates/requests/financial_verification.html @@ -16,12 +16,12 @@ ) }} {% endif %} - {% if f.is_missing_task_order_number %} + {% if not f.is_missing_task_order_number %} {% set extended_url = url_for('requests.financial_verification', request_id=request_id, extended=True) %} {{ Alert('Task Order not found in EDA', message="We could not find your Task Order in our system of record, EDA. Please confirm that you have entered it correctly.
- Enter Task Order information manually + Enter Task Order information manually "|format(extended_url), level='warning' ) }}