From 36949bbf33ce73f3c8adbcc13ed7db244c2c3b5f Mon Sep 17 00:00:00 2001 From: RaidMax Date: Tue, 14 Jul 2020 15:48:38 -0500 Subject: [PATCH] tweak color of kick icon --- .../Configuration/ApplicationConfiguration.cs | 2 +- WebfrontCore/Views/Server/_ClientActivity.cshtml | 6 +++--- WebfrontCore/wwwroot/css/src/main.scss | 9 +++++++++ 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/SharedLibraryCore/Configuration/ApplicationConfiguration.cs b/SharedLibraryCore/Configuration/ApplicationConfiguration.cs index 30b454193..283777d4d 100644 --- a/SharedLibraryCore/Configuration/ApplicationConfiguration.cs +++ b/SharedLibraryCore/Configuration/ApplicationConfiguration.cs @@ -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() { diff --git a/WebfrontCore/Views/Server/_ClientActivity.cshtml b/WebfrontCore/Views/Server/_ClientActivity.cshtml index b63196e71..01f104643 100644 --- a/WebfrontCore/Views/Server/_ClientActivity.cshtml +++ b/WebfrontCore/Views/Server/_ClientActivity.cshtml @@ -55,7 +55,7 @@ if (ViewBag.Authorized) { - + } string levelColorClass = !ViewBag.Authorized ? "" : $"level-color-{Model.Players[i].LevelInt}"; @@ -63,7 +63,7 @@ if (ViewBag.Authorized) { - + }
} @@ -84,7 +84,7 @@ if (ViewBag.Authorized) { - + }
} diff --git a/WebfrontCore/wwwroot/css/src/main.scss b/WebfrontCore/wwwroot/css/src/main.scss index 33e7ee9a2..d7d5e2b0e 100644 --- a/WebfrontCore/wwwroot/css/src/main.scss +++ b/WebfrontCore/wwwroot/css/src/main.scss @@ -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; +}