From 930eadb0851df10be8aaeb841ac6e3e36eb3bf49 Mon Sep 17 00:00:00 2001 From: Sayam Samal Date: Thu, 4 Sep 2025 20:06:30 +0530 Subject: [PATCH] dark_theme: Clean up manage user profile footer border color. Fixes part of #35880. --- web/styles/app_variables.css | 4 ++++ web/styles/dark_theme.css | 8 -------- web/styles/popovers.css | 2 +- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/web/styles/app_variables.css b/web/styles/app_variables.css index 296c2849cb..f0e4d1281a 100644 --- a/web/styles/app_variables.css +++ b/web/styles/app_variables.css @@ -1444,6 +1444,10 @@ hsl(0deg 0% 87%), hsl(0deg 0% 0% / 40%) ); + --color-border-manage-profile-footer: light-dark( + hsl(0deg 0% 87%), + hsl(0deg 0% 100% / 20%) + ); /* Link colors */ --color-text-link: light-dark(hsl(210deg 94% 42%), hsl(200deg 100% 50%)); diff --git a/web/styles/dark_theme.css b/web/styles/dark_theme.css index 9d69ea655d..fcbc17d7ac 100644 --- a/web/styles/dark_theme.css +++ b/web/styles/dark_theme.css @@ -358,14 +358,6 @@ } } - #user-profile-modal { - .manage-profile-tab-footer { - &.modal__footer_wrapper { - border-top: 1px solid hsl(0deg 0% 100% / 20%); - } - } - } - .top-messages-logo { opacity: 0.7; } diff --git a/web/styles/popovers.css b/web/styles/popovers.css index b54518c61d..08c8f40178 100644 --- a/web/styles/popovers.css +++ b/web/styles/popovers.css @@ -673,7 +673,7 @@ ul.popover-group-menu-member-list { height: 0; &.modal__footer_wrapper { - border-top: 1px solid hsl(0deg 0% 87%); + border-top: 1px solid var(--color-border-manage-profile-footer); display: flex; justify-content: flex-end; align-items: center;