From 82f4ea2dea86edf0bec6f51cf6a38a6f787d9011 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 18 Oct 2025 18:05:44 +0300 Subject: [PATCH] Fix #3634 --- apps/client/src/stylesheets/theme-next-light.css | 2 +- apps/client/src/stylesheets/theme-next/shell.css | 2 +- apps/client/src/stylesheets/tree.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/client/src/stylesheets/theme-next-light.css b/apps/client/src/stylesheets/theme-next-light.css index 546283414..0df203dfd 100644 --- a/apps/client/src/stylesheets/theme-next-light.css +++ b/apps/client/src/stylesheets/theme-next-light.css @@ -127,7 +127,7 @@ --left-pane-item-selected-color: black; --left-pane-item-selected-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); --left-pane-item-action-button-background: rgba(0, 0, 0, 0.11); - --left-pane-item-action-button-color: inherit; + --left-pane-item-action-button-color: var(--left-pane-text-color); --left-pane-item-action-button-hover-background: white; --left-pane-item-action-button-hover-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15); --left-pane-item-selected-action-button-hover-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25); diff --git a/apps/client/src/stylesheets/theme-next/shell.css b/apps/client/src/stylesheets/theme-next/shell.css index 4c461b139..5e713c249 100644 --- a/apps/client/src/stylesheets/theme-next/shell.css +++ b/apps/client/src/stylesheets/theme-next/shell.css @@ -639,7 +639,7 @@ body.layout-vertical.background-effects div.quick-search .dropdown-menu { #left-pane span.fancytree-node.fancytree-active { position: relative; background: transparent !important; - color: var(--left-pane-item-selected-color) !important; + color: var(--left-pane-item-selected-color); } @keyframes left-pane-item-select { diff --git a/apps/client/src/stylesheets/tree.css b/apps/client/src/stylesheets/tree.css index df38d2859..a85ee7f63 100644 --- a/apps/client/src/stylesheets/tree.css +++ b/apps/client/src/stylesheets/tree.css @@ -179,7 +179,7 @@ span.fancytree-node.fancytree-active-clone:not(.fancytree-active) .fancytree-tit } span.fancytree-active { - color: var(--active-item-text-color) !important; + color: var(--active-item-text-color); background-color: var(--active-item-background-color) !important; border-color: transparent; /* invisible border */ border-radius: 5px;