From f55d74a95dcf7e8b2210be6e1a7f661389863ee6 Mon Sep 17 00:00:00 2001 From: SabreCat Date: Fri, 15 Sep 2023 16:39:50 -0500 Subject: [PATCH] refactor(profiles): remove email feature also still more visual cleanup of profile modal --- .../client/src/components/memberDetails.vue | 44 ++++--- website/client/src/components/userLink.vue | 35 +++++ .../src/components/userMenu/profile.vue | 120 ++++-------------- website/server/controllers/api-v3/chat.js | 27 +--- .../libs/chatReporting/groupChatReporter.js | 12 -- .../libs/chatReporting/inboxChatReporter.js | 14 +- .../libs/chatReporting/profileReporter.js | 34 ----- 7 files changed, 84 insertions(+), 202 deletions(-) diff --git a/website/client/src/components/memberDetails.vue b/website/client/src/components/memberDetails.vue index e59ad25587..7311cb60af 100644 --- a/website/client/src/components/memberDetails.vue +++ b/website/client/src/components/memberDetails.vue @@ -1,10 +1,10 @@ @@ -39,7 +50,12 @@ &[class*="tier"] .svg-icon { margin-top: 5px; + + &.margin-bump { + margin-top: 7px; + } } + &.npc .svg-icon { margin-top: 4px; } @@ -52,6 +68,21 @@ } } } + + .is-buffed { + width: 20px; + height: 20px; + background: $header-dark-background; + display: inline-block; + margin-top: 2px; + + .svg-icon { + display: block; + width: 10px; + height: 12px; + margin: 0 auto; + } + }