zeta: Make the Jump to Edit callout pop up more (#23404)

Danilo Leal created

| Before | After |
|--------|--------|
| <img width="1328" alt="Screenshot 2025-01-21 at 11 20 49 AM"
src="https://github.com/user-attachments/assets/ad8e3017-122a-4ebd-b1f5-5eb41cc3725a"
/> | <img width="1328" alt="Screenshot 2025-01-21 at 11 19 39 AM"
src="https://github.com/user-attachments/assets/a0dcbd52-6aca-43fa-97ee-6efde15c8bc1"
/> |

Release Notes:

- N/A

Change summary

crates/editor/src/element.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

crates/editor/src/element.rs 🔗

@@ -3328,7 +3328,7 @@ impl EditorElement {
                     .px_0p5()
                     .font(theme::ThemeSettings::get_global(cx).buffer_font.clone())
                     .text_size(TextSize::XSmall.rems(cx))
-                    .text_color(cx.theme().colors().text.opacity(0.8))
+                    .text_color(cx.theme().colors().text)
                     .child("tab");
 
                 let icon_container = div().mt(px(2.5)); // For optical alignment
@@ -3338,9 +3338,9 @@ impl EditorElement {
                     .py_0p5()
                     .px_1()
                     .gap_1()
-                    .bg(cx.theme().colors().editor_subheader_background)
+                    .bg(cx.theme().colors().text_accent.opacity(0.15))
                     .border_1()
-                    .border_color(cx.theme().colors().text_accent.opacity(0.2))
+                    .border_color(cx.theme().colors().text_accent.opacity(0.8))
                     .rounded_md()
                     .shadow_sm();