This commit is contained in:
asaki222 2024-11-08 11:09:24 -05:00
parent 9a5ed14e88
commit 9b43b8df01
No known key found for this signature in database
GPG key ID: 2C4F802060E06EA4
4 changed files with 10 additions and 6 deletions

View file

@ -253,3 +253,7 @@ abbr[title] {
.break-word {
word-break: break-word;
}
.maxwidth-386{
max-width: 386px !important;
}

View file

@ -13,7 +13,7 @@
</fieldset>
<div class="margin-top-3" id="anything-else">
<p><em>Provide details below. <abbr class="usa-hint usa-hint--required" title="required">*</abbr></em></p>
<p><em>This question is optional.</em></p>
{% with attr_maxlength=2000 add_label_class="usa-sr-only" %}
{% input_with_errors forms.0.anything_else %}
{% endwith %}

View file

@ -14,12 +14,12 @@
{% endblock %}
<div id="main-content">
<h1 id="domain-requests-header">Domain requests</h1>
<h1 id="domain-requests-header" class="margin-bottom-1">Domain requests</h1>
<div class="grid-row grid-gap">
{% if has_edit_request_portfolio_permission %}
<div class="mobile:grid-col-12 tablet:grid-col-6">
<p class="margin-y-0">Domain requests can only be modified by the person who created the request.</p>
<p class="margin-y-0 maxwidth-386">Domain requests can only be modified by the person who created the request.</p>
</div>
<div class="mobile:grid-col-12 tablet:grid-col-6">
{% comment %}

View file

@ -323,9 +323,9 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
request,
"domain_request_intro.html",
{
"hide_requests": True,
"hide_domains": True,
"hide_members": True,
"hide_requests": False,
"hide_domains": False,
"hide_members": False,
},
)
else: