fix: Use more subtle colors for "Request full access URL" alert (#5390)

Fixes #1765
This commit is contained in:
Lars Eggert 2023-03-21 15:41:51 +02:00 committed by GitHub
parent 8f8a3489ea
commit 81573a29c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -516,7 +516,7 @@
</a> </a>
{% endif %} {% endif %}
{% if show_send_full_url %} {% if show_send_full_url %}
<div class="alert alert-danger my-3"> <div class="alert alert-info my-3">
<p> <p>
You are not allowed to modify or cancel this submission. You can You are not allowed to modify or cancel this submission. You can
only modify or cancel this submission from the same URL you were only modify or cancel this submission from the same URL you were
@ -535,7 +535,7 @@
<form class="mt-3" method="post"> <form class="mt-3" method="post">
{% csrf_token %} {% csrf_token %}
<input type="hidden" name="action" value="sendfullurl"> <input type="hidden" name="action" value="sendfullurl">
<button class="btn btn-danger" type="submit"> <button class="btn btn-primary" type="submit">
Request full access URL Request full access URL
</button> </button>
</form> </form>