From a2857bba8305976761c55fda269d7fb79c951b8c Mon Sep 17 00:00:00 2001 From: Adam <2363879+adamdotdevin@users.noreply.github.com> Date: Wed, 31 Dec 2025 10:58:49 -0600 Subject: fix(desktop): prompt input cleanup --- packages/ui/src/components/tooltip.css | 7 ++++--- packages/ui/src/styles/tailwind/colors.css | 4 ++++ 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'packages/ui/src') diff --git a/packages/ui/src/components/tooltip.css b/packages/ui/src/components/tooltip.css index 637986249..f7afe16aa 100644 --- a/packages/ui/src/components/tooltip.css +++ b/packages/ui/src/components/tooltip.css @@ -8,9 +8,10 @@ border-radius: var(--radius-md); background-color: var(--surface-float-base); color: var(--text-inverted-base); - color: rgba(253, 252, 252, 0.94); - padding: 2px 8px; - border: 0.5px solid rgba(253, 252, 252, 0.2); + background: var(--surface-float-base); + padding: 6px 12px; + border: 1px solid var(--border-weak-base, rgba(0, 0, 0, 0.07)); + box-shadow: var(--shadow-md); pointer-events: none !important; /* transition: all 150ms ease-out; */ diff --git a/packages/ui/src/styles/tailwind/colors.css b/packages/ui/src/styles/tailwind/colors.css index 59c61952a..376cd35d3 100644 --- a/packages/ui/src/styles/tailwind/colors.css +++ b/packages/ui/src/styles/tailwind/colors.css @@ -77,6 +77,10 @@ --color-text-weaker: var(--text-weaker); --color-text-strong: var(--text-strong); --color-text-interactive-base: var(--text-interactive-base); + --color-text-invert-base: var(--text-invert-base); + --color-text-invert-weak: var(--text-invert-weak); + --color-text-invert-weaker: var(--text-invert-weaker); + --color-text-invert-strong: var(--text-invert-strong); --color-text-on-brand-base: var(--text-on-brand-base); --color-text-on-interactive-base: var(--text-on-interactive-base); --color-text-on-interactive-weak: var(--text-on-interactive-weak); -- cgit v1.2.3