tweak color of kick icon
This commit is contained in:
parent
88b1f08149
commit
36949bbf33
@ -99,7 +99,7 @@ namespace SharedLibraryCore.Configuration
|
||||
[ConfigurationIgnore]
|
||||
public bool IgnoreServerConnectionLost { get; set; }
|
||||
[ConfigurationIgnore]
|
||||
public Uri MasterUrl { get; set; } = new Uri("https://fn-p.master.threadsafe.sh/");
|
||||
public Uri MasterUrl { get; set; } = new Uri("http://api.raidmax.org:5000");
|
||||
|
||||
public IBaseConfiguration Generate()
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
|
||||
if (ViewBag.Authorized)
|
||||
{
|
||||
<div class="oi oi-circle-x text-danger mr-1 d-md-none profile-action" data-action="kick" data-action-id="@Model.Players[i].ClientId" aria-hidden="true"></div>
|
||||
<div class="oi oi-circle-x mr-1 d-md-none profile-action align-baseline action-kick-button" data-action="kick" data-action-id="@Model.Players[i].ClientId" aria-hidden="true"></div>
|
||||
}
|
||||
string levelColorClass = !ViewBag.Authorized ? "" : $"level-color-{Model.Players[i].LevelInt}";
|
||||
<a asp-controller="Client" asp-action="ProfileAsync" asp-route-id="@Model.Players[i].ClientId" class="@levelColorClass">
|
||||
@ -63,7 +63,7 @@
|
||||
</a>
|
||||
if (ViewBag.Authorized)
|
||||
{
|
||||
<div class="oi oi-circle-x text-danger ml-1 d-none d-md-inline-flex profile-action" data-action="kick" data-action-id="@Model.Players[i].ClientId" aria-hidden="true"></div>
|
||||
<div class="oi oi-circle-x ml-1 d-none d-md-inline-flex profile-action align-baseline action-kick-button" data-action="kick" data-action-id="@Model.Players[i].ClientId" aria-hidden="true"></div>
|
||||
}
|
||||
<br />
|
||||
}
|
||||
@ -84,7 +84,7 @@
|
||||
</a>
|
||||
if (ViewBag.Authorized)
|
||||
{
|
||||
<div class="oi oi-circle-x text-danger ml-1 profile-action" data-action="kick" data-action-id="@Model.Players[i].ClientId" aria-hidden="true"></div>
|
||||
<div class="oi oi-circle-x ml-1 profile-action align-baseline action-kick-button" data-action="kick" data-action-id="@Model.Players[i].ClientId" aria-hidden="true"></div>
|
||||
}
|
||||
<br />
|
||||
}
|
||||
|
@ -391,3 +391,12 @@ input:checked + .toggle-switch-slider:before {
|
||||
-ms-transform: translateX(3em);
|
||||
transform: translateX(3em);
|
||||
}
|
||||
|
||||
.action-kick-button {
|
||||
color: #492121;
|
||||
}
|
||||
|
||||
.action-kick-button:hover {
|
||||
color: #ff6060 !important;
|
||||
color: rgba(255, 69, 69, 0.85) !important;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user