mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-20 14:29:51 -04:00
Update all links to use GOVUK Frontend style
Includes: - turning off :visited styles to match existing design - swapping heading classes used to make links bold for the GOVUK Frontend bold override class - adding visually hidden text to some links to make them work when isolated from their context We may need to revisit whether some links, such as those for documentation and features, may benefit from having some indication that their target has been visited.
This commit is contained in:
@@ -19,11 +19,11 @@
|
||||
|
||||
<p>Find out more about:</p>
|
||||
<ul class="list list-bullet">
|
||||
<li><a href="{{ url_for('main.trial_mode_new') }}">trial mode</a></li>
|
||||
<li><a href="{{ url_for('main.message_status') }}">message status types</a></li>
|
||||
<li><a href="{{ url_for('main.features_email') }}">email replies</a></li>
|
||||
<li><a href="{{ url_for('main.features_sms') }}">text message replies</a></li>
|
||||
<li><a href="{{ url_for('main.features_letters') }}">letters</a></li>
|
||||
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.trial_mode_new') }}">trial mode</a></li>
|
||||
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.message_status') }}">message status types</a></li>
|
||||
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.features_email') }}">email replies</a></li>
|
||||
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.features_sms') }}">text message replies</a></li>
|
||||
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.features_letters') }}">letters</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- <h2 id="trial-mode" class="heading-medium">Trial mode</h2>
|
||||
@@ -38,7 +38,7 @@
|
||||
<p>
|
||||
To remove these restrictions, you can
|
||||
{% if current_service and current_service.trial_mode %}
|
||||
<a href="{{ url_for('.request_to_go_live', service_id=current_service.id) }}">send us a request to go live</a>.
|
||||
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.request_to_go_live', service_id=current_service.id) }}">send us a request to go live</a>.
|
||||
{% else %}
|
||||
send us a request to go live.
|
||||
{% endif %}
|
||||
@@ -56,7 +56,7 @@
|
||||
|
||||
<p>Notify’s real-time dashboard lets you check the status of any message, to see when it was delivered. You can use our API to check the status of your messages too.</p>
|
||||
|
||||
<p><a href="https://www.notifications.service.gov.uk/documentation">Read our documentation</a> for a detailed list of API message statuses.</p>
|
||||
<p><a class="govuk-link govuk-link--no-visited-state" href="https://www.notifications.service.gov.uk/documentation">Read our documentation</a> for a detailed list of API message statuses.</p>
|
||||
<img
|
||||
src="{{ asset_url('images/message-sending-flow.svg') }}"
|
||||
alt="A picture of the sending flow of messages in Notify, showing the three states of Sending, Delivered, And Failed. Also shows the next
|
||||
|
||||
Reference in New Issue
Block a user