From 630319fde8442c3a289f17f108a8b91ca85a4744 Mon Sep 17 00:00:00 2001 From: Karl Stolley Date: Mon, 28 Jul 2025 14:50:40 -0500 Subject: [PATCH] inbox: Update channel-row chevrons to Vlad's spec. --- web/styles/app_variables.css | 3 +++ web/styles/inbox.css | 11 +++++++++++ 2 files changed, 14 insertions(+) diff --git a/web/styles/app_variables.css b/web/styles/app_variables.css index 8ae1de4fb2..bbd0f9e471 100644 --- a/web/styles/app_variables.css +++ b/web/styles/app_variables.css @@ -1927,6 +1927,9 @@ ); --color-icons-inbox: light-dark(hsl(0deg 0% 0%), hsl(0deg 0% 100%)); --color-folder-header: light-dark(hsl(216deg 43% 20%), hsl(216deg 50% 75%)); + /* Light mode uses the --grey-600 equivalent; + dark mode uses the --grey-300 equivalent. */ + --color-inbox-row-chevron: light-dark(#535663, #aaadba); /* Navbar dropdown menu constants - Values from Figma design */ --box-shadow-popover-menu: diff --git a/web/styles/inbox.css b/web/styles/inbox.css index 81b16ddb31..f0903abbd0 100644 --- a/web/styles/inbox.css +++ b/web/styles/inbox.css @@ -584,6 +584,17 @@ } } +.channel-row-chevron { + color: var(--color-inbox-row-chevron); +} + +.inbox-collapsed-state { + .folder-row-chevron, + .channel-row-chevron { + opacity: 0.5; + } +} + .inbox-container #inbox-pane .inbox-folder .unread_mention_info { display: none; }