Remove underline

This commit is contained in:
zandercymatics 2024-01-09 07:57:13 -07:00
parent 62f460b165
commit dff0ef8f3f
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 20 additions and 5 deletions

View file

@ -125,3 +125,7 @@ abbr[title] {
.flex-end { .flex-end {
align-items: flex-end; align-items: flex-end;
} }
.remove-underline {
text-decoration: none !important;
}

View file

@ -147,14 +147,21 @@
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img" width="24"> <svg class="usa-icon" aria-hidden="true" focusable="false" role="img" width="24">
<use xlink:href="{%static 'img/sprite.svg'%}#edit"></use> <use xlink:href="{%static 'img/sprite.svg'%}#edit"></use>
</svg> </svg>
Edit <span class="usa-sr-only">{{ application.requested_domain.name|default:"New domain request" }} </span> {% if application.requested_domain and application.requested_domain.name %}
Edit <span class="usa-sr-only">{{ application.requested_domain.name }}</span>
{% else %}
Edit <span class="usa-sr-only">New domain request {{ forloop.counter }}</span>
{% endif %}
{% else %} {% else %}
<a href="{% url 'application-status' application.pk %}"> <a href="{% url 'application-status' application.pk %}">
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img" width="24"> <svg class="usa-icon" aria-hidden="true" focusable="false" role="img" width="24">
<use xlink:href="{%static 'img/sprite.svg'%}#settings"></use> <use xlink:href="{%static 'img/sprite.svg'%}#settings"></use>
</svg> </svg>
Manage <span class="usa-sr-only">{{application.requested_domain.name}} </span> {% if application.requested_domain and application.requested_domain.name %}
Manage <span class="usa-sr-only">{{ application.requested_domain.name }}</span>
{% else %}
Manage <span class="usa-sr-only">New domain request {{ forloop.counter }}</span>
{% endif %}
{% endif %} {% endif %}
</a> </a>
</td> </td>
@ -164,14 +171,18 @@
<a <a
id="button-toggle-delete-domain-alert-{{ forloop.counter }}" id="button-toggle-delete-domain-alert-{{ forloop.counter }}"
href="#toggle-delete-domain-alert-{{ forloop.counter }}" href="#toggle-delete-domain-alert-{{ forloop.counter }}"
class="usa-button--unstyled" class="usa-button--unstyled remove-underline"
aria-controls="toggle-delete-domain-alert-{{ forloop.counter }}" aria-controls="toggle-delete-domain-alert-{{ forloop.counter }}"
data-open-modal data-open-modal
> >
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img" width="24"> <svg class="usa-icon" aria-hidden="true" focusable="false" role="img" width="24">
<use xlink:href="{%static 'img/sprite.svg'%}#delete"></use> <use xlink:href="{%static 'img/sprite.svg'%}#delete"></use>
</svg> </svg>
Delete {% if application.requested_domain and application.requested_domain.name %}
Delete <span class="usa-sr-only">{{ application.requested_domain.name }}</span>
{% else %}
Delete <span class="usa-sr-only">New domain request {{ forloop.counter }}</span>
{% endif %}
</a> </a>
<div <div