Skip to content

Commit

Permalink
zeta: Make the Jump to Edit callout pop up more (#23404)
Browse files Browse the repository at this point in the history
| 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
  • Loading branch information
danilo-leal authored Jan 21, 2025
1 parent d011b97 commit c4542ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/editor/src/element.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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();

Expand Down

0 comments on commit c4542ca

Please sign in to comment.