mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-12 20:49:41 +02:00
Remove underline
This commit is contained in:
parent
62f460b165
commit
dff0ef8f3f
2 changed files with 20 additions and 5 deletions
|
@ -125,3 +125,7 @@ abbr[title] {
|
||||||
.flex-end {
|
.flex-end {
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.remove-underline {
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue