Schaltfläche „Ablehnen“ in ShowEnvelope.cshtml hinzugefügt.

This commit is contained in:
Developer 02
2024-05-29 11:57:47 +02:00
parent 21e8a86a99
commit 21934928c2
5 changed files with 19 additions and 4 deletions

View File

@@ -59,7 +59,13 @@
</svg>
<span>@_localizer[WebKey.Complete]</span>
</button>
<button class="btn_refresh btn btn-outline-secondary" type="button">
<button class="btn_reject btn btn-danger" type="button">
<svg width="25px" height="25px" viewBox="43.5 43.5 512 512" version="1.1" fill="currentColor" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path class="st0" d="M263.24,43.5c-117.36,0-212.5,95.14-212.5,212.5s95.14,212.5,212.5,212.5s212.5-95.14,212.5-212.5 S380.6,43.5,263.24,43.5z M367.83,298.36c17.18,17.18,17.18,45.04,0,62.23v0c-17.18,17.18-45.04,17.18-62.23,0l-42.36-42.36 l-42.36,42.36c-17.18,17.18-45.04,17.18-62.23,0v0c-17.18-17.18-17.18-45.04,0-62.23L201.01,256l-42.36-42.36 c-17.18-17.18-17.18-45.04,0-62.23v0c17.18-17.18,45.04-17.18,62.23,0l42.36,42.36l42.36-42.36c17.18-17.18,45.04-17.18,62.23,0v0 c17.18,17.18,17.18,45.04,0,62.23L325.46,256L367.83,298.36z"/>
</svg>
<span>@_localizer[WebKey.Reject]</span>
</button>
<button class="btn_refresh btn btn-secondary" type="button">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-arrow-counterclockwise" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2v1z" />
<path d="M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466z" />

View File

@@ -25,5 +25,6 @@ namespace EnvelopeGenerator.Web
public static readonly string EnvelopeInfo1 = nameof(EnvelopeInfo1);
public static readonly string EnvelopeInfo2 = nameof(EnvelopeInfo2);
public static readonly string SigAgree = nameof(SigAgree);
public static readonly string Reject = nameof(Reject);
}
}

View File

@@ -15,14 +15,16 @@
margin-bottom: 10vh;
}
.btn_refresh, .btn_complete {
.btn_refresh, .btn_reject, .btn_complete {
height:2.5rem;
}
.btn_complete .icon {
.btn_complete .icon, .btn_reject .icon, .btn_refresh .icon {
width: 1.1rem;
}
.btn_complete span {
.btn_complete span, .btn_reject span, .btn_refresh span {
vertical-align: middle;
}