From c4542ca731cbfe9268efd943f79a7d382c0b9d94 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Tue, 21 Jan 2025 11:40:02 -0300 Subject: [PATCH] zeta: Make the Jump to Edit callout pop up more (#23404) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | Before | After | |--------|--------| | Screenshot 2025-01-21 at 11 20 49 AM | Screenshot 2025-01-21 at 11 19 39 AM | Release Notes: - N/A --- crates/editor/src/element.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/editor/src/element.rs b/crates/editor/src/element.rs index 072750c3d3f28c3fc54398f2067637091bfea947..da49ced1090ffafe1755934590d761986337bff9 100644 --- a/crates/editor/src/element.rs +++ b/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();