This commit is contained in:
zandercymatics 2024-06-21 10:03:50 -06:00
parent fd0dcc3440
commit 521c9a3243
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 4 additions and 10 deletions

View file

@ -790,9 +790,9 @@ div.dja__model-description{
.dja-readonly-textarea-container { .dja-readonly-textarea-container {
textarea { textarea {
width: 100%; width: 100%;
min-width: 610px;
resize: none; resize: none;
cursor: auto; cursor: auto;
border-width: medium;
&::-webkit-scrollbar { &::-webkit-scrollbar {
background-color: transparent; background-color: transparent;
@ -800,16 +800,14 @@ div.dja__model-description{
width: 12px; width: 12px;
} }
// Style the scroll bar handle
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
background-color: var(--body-fg); background-color: var(--body-fg);
border-radius: 99px; border-radius: 99px;
background-clip: content-box; background-clip: content-box;
border: 3px solid transparent; border: 3px solid transparent;
} }
} }
} }
.max-full { .max-full {
@ -821,10 +819,6 @@ div.dja__model-description{
border-radius: 4px; border-radius: 4px;
} }
.no-border {
border: none;
}
.display-none { .display-none {
// Many elements in django admin try to override this, so we need !important. // Many elements in django admin try to override this, so we need !important.
display: none !important; display: none !important;

View file

@ -69,7 +69,7 @@ This is using a custom implementation fieldset.html (see admin/fieldset.html)
{% block after_help_text %} {% block after_help_text %}
{% if field.field.name == "status" %} {% if field.field.name == "status" %}
<div class="flex-container {% if not filtered_audit_log_entries and original_object.status != "action needed" or not original_object.action_needed_reason and original_object.status == "action needed" and not filtered_audit_log_entries %}display-none{% endif %}" id="dja-status-changelog"> <div class="flex-container {% if not filtered_audit_log_entries %}display-none{% endif %}" id="dja-status-changelog">
<label aria-label="Status changelog"></label> <label aria-label="Status changelog"></label>
<div> <div>
<div class="usa-table-container--scrollable collapse--dgsimple collapsed" tabindex="0"> <div class="usa-table-container--scrollable collapse--dgsimple collapsed" tabindex="0">
@ -112,7 +112,7 @@ This is using a custom implementation fieldset.html (see admin/fieldset.html)
<label class="max-full" for="action_needed_reason_email_view_more"> <label class="max-full" for="action_needed_reason_email_view_more">
<strong>Auto-generated email (sent to submitter)</strong> <strong>Auto-generated email (sent to submitter)</strong>
</label> </label>
<textarea id="action_needed_reason_email_view_more" cols="40" rows="20" class="no-border {% if not original_object.action_needed_reason %}display-none{% endif %}" readonly> <textarea id="action_needed_reason_email_view_more" cols="40" rows="20" class="{% if not original_object.action_needed_reason %}display-none{% endif %}" readonly>
{{ original_object.action_needed_reason_email }} {{ original_object.action_needed_reason_email }}
</textarea> </textarea>
<p id="no-email-message" class="{% if original_object.action_needed_reason %}display-none{% endif %}">No email will be sent</p> <p id="no-email-message" class="{% if original_object.action_needed_reason %}display-none{% endif %}">No email will be sent</p>