CSS stuff

This commit is contained in:
Jon Roberts 2023-04-13 15:20:36 -06:00
parent f1a96e37fe
commit c3431ab36a
No known key found for this signature in database
GPG key ID: EED093582198B041
3 changed files with 8 additions and 4 deletions

View file

@ -133,11 +133,15 @@ a.breadcrumb__back {
} }
} }
.withdraw_outline { a.withdraw_outline {
box-shadow: inset 0 0 0 2px color('error'); box-shadow: inset 0 0 0 2px color('error');
color: color('error'); color: color('error');
} }
a.withdraw {
background-color: color('error');
}
.usa-sidenav { .usa-sidenav {
.usa-sidenav__item { .usa-sidenav__item {
span { span {

View file

@ -117,7 +117,7 @@ class DomainApplicationFixture:
"organization_name": "Example - Approved", "organization_name": "Example - Approved",
}, },
{ {
"status": "withdrawn" "status": "withdrawn",
"organization_name": "Example - Withdrawn", "organization_name": "Example - Withdrawn",
} }
] ]

View file

@ -11,7 +11,7 @@
If you withdraw your request we won't review it. Once you withdraw your request you'll be able to edit it or completely remove it. If you withdraw your request we won't review it. Once you withdraw your request you'll be able to edit it or completely remove it.
<p><button type="" class="usa-button usa-button--outline withdraw_outline">Withdraw request</button> <p><a href="{% url 'application-withdrawn' domainapplication.id %}" class="usa-button withdraw">Withdraw request</button>
<a href="{% url 'application-status' domainapplication.id %}">Cancel</a></p> <a href="{% url 'application-status' domainapplication.id %}">Cancel</a></p>
</div> </div>