Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from
Mar 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ietf/templates/submit/submission_status.html
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ <h2 class="mt-5">
</a>
{% endif %}
{% if show_send_full_url %}
<div class="alert alert-danger my-3">
<div class="alert alert-info my-3">
<p>
You are not allowed to modify or cancel this submission. You can
only modify or cancel this submission from the same URL you were
Expand All @@ -535,7 +535,7 @@ <h2 class="mt-5">
<form class="mt-3" method="post">
{% csrf_token %}
<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
</button>
</form>
Expand Down