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

| 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
This commit is contained in:
Danilo Leal 2025-01-21 11:40:02 -03:00 committed by GitHub
parent d011b97830
commit c4542ca731
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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();