This is an automated email from the ASF dual-hosted git repository.

hainenber pushed a commit to branch 
feat/better-recognizability-for-explore-chart-panel-split
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 9ab099a807c849b589b9418ccbb46e5ccfedd481
Author: hainenber <[email protected]>
AuthorDate: Thu Feb 19 11:55:16 2026 +0700

    feat(explore-chart-panel): darken the color of vertical split for better 
recognizability
    
    Signed-off-by: hainenber <[email protected]>
---
 superset-frontend/src/explore/components/ExploreChartPanel/index.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/superset-frontend/src/explore/components/ExploreChartPanel/index.tsx 
b/superset-frontend/src/explore/components/ExploreChartPanel/index.tsx
index fd29a604383..b21c94dde6d 100644
--- a/superset-frontend/src/explore/components/ExploreChartPanel/index.tsx
+++ b/superset-frontend/src/explore/components/ExploreChartPanel/index.tsx
@@ -113,8 +113,8 @@ const Styles = styled.div<{ showSplite: boolean }>`
   }
 
   .gutter {
-    border-top: 1px solid ${({ theme }) => theme.colorSplit};
-    border-bottom: 1px solid ${({ theme }) => theme.colorSplit};
+    border-top: 1px solid color-mix(in srgb, ${({ theme }) => 
theme.colorSplit}, black 15%);
+    border-bottom: 1px solid color-mix(in srgb, ${({ theme }) => 
theme.colorSplit}, black 15%);
     width: ${({ theme }) => theme.sizeUnit * 9}px;
     margin: ${({ theme }) => theme.sizeUnit * GUTTER_SIZE_FACTOR}px auto;
   }

Reply via email to