Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
eed265776b |
@ -20,21 +20,22 @@
|
|||||||
|
|
||||||
@if (Status != null)
|
@if (Status != null)
|
||||||
{
|
{
|
||||||
<p class="mt-3"><strong>Status:</strong>
|
<p class="mt-3 Ueberschrift">
|
||||||
|
<strong>Status: </strong>
|
||||||
@if (Status == true)
|
@if (Status == true)
|
||||||
{
|
{
|
||||||
@Localizer["Zusage"]
|
<span class="Underline">@Localizer["Zugesagt"]</span>
|
||||||
<button class="btn btn-danger" @onclick="Absage">@Localizer["Absagen"]</button>
|
<br /> <button class="btn mt-1 AbsageBtn" @onclick="Absage">@Localizer["Absagen"]</button>
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
@Localizer["Absage"]
|
<span class="Underline">@Localizer["Abgesagt"]</span>
|
||||||
<button class="btn btn-success" @onclick="Zusage">@Localizer["Zusagen"]</button>
|
<br /> <button class="btn mt-1 ZusageBtn" @onclick="Zusage">@Localizer["Zusagen"]</button>
|
||||||
}
|
}
|
||||||
</p>
|
</p>
|
||||||
} else {
|
} else {
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<button class="btn btn-success" @onclick="Zusage">@Localizer["Zusagen"]</button>
|
<button class="AbsageBtn" @onclick="Zusage">@Localizer["Zusagen"]</button>
|
||||||
<button class="btn btn-danger" @onclick="Absage">@Localizer["Absagen"]</button>
|
<button class="ZusageBtn" @onclick="Absage">@Localizer["Absagen"]</button>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
@ -1 +1,23 @@
|
|||||||
/* Module Custom Styles */
|
/* Module Custom Styles */
|
||||||
|
.AbsageBtn {
|
||||||
|
|
||||||
|
background-color: #e63946; /* sch<63>nes kr<6B>ftiges Rot */
|
||||||
|
color: white;
|
||||||
|
|
||||||
|
}
|
||||||
|
.AbsageBtn:hover {
|
||||||
|
background-color: #ae262f
|
||||||
|
}
|
||||||
|
.ZusageBtn {
|
||||||
|
background-color: #2a9d8f; /* angenehmes Gr<47>n */
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.ZusageBtn:hover {
|
||||||
|
background-color: #20776d
|
||||||
|
}
|
||||||
|
.Ueberschrift {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
.Underline {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
Reference in New Issue
Block a user