From f0f48e8e309603169fd00874e94d5ca50e413495 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 18 Mar 2025 18:59:29 -0700 Subject: [PATCH] fix: Ensure decorative lines only appear in backdrop, not terminal area --- aider/website/_includes/recording.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aider/website/_includes/recording.css b/aider/website/_includes/recording.css index 2a1325de3..d234ef337 100644 --- a/aider/website/_includes/recording.css +++ b/aider/website/_includes/recording.css @@ -116,9 +116,11 @@ radial-gradient(circle at 80% 70%, transparent 0%, transparent 40%, rgba(255,255,255,0.1) 41%, transparent 42%), radial-gradient(circle at 40% 90%, transparent 0%, transparent 70%, rgba(255,255,255,0.1) 71%, transparent 72%), radial-gradient(circle at 60% 10%, transparent 0%, transparent 50%, rgba(255,255,255,0.1) 51%, transparent 52%); - background-size: 100% 100%; + background-size: it.100% 100%; opacity: 0.8; pointer-events: none; + /* Ensure the lines don't appear inside the terminal */ + z-index: -1; } .terminal-container { @@ -128,6 +130,8 @@ margin-top: 0; margin-bottom: 0; position: relative; + background-color: white; /* Add background color to terminal container */ + z-index: 1; /* Ensure terminal appears above the backdrop effects */ } /* Timestamp link styling */