diff --git a/packages/desktop/src/components/views/Dialogs.tsx b/packages/desktop/src/components/views/Dialogs.tsx index 3eb5180..003674d 100644 --- a/packages/desktop/src/components/views/Dialogs.tsx +++ b/packages/desktop/src/components/views/Dialogs.tsx @@ -249,18 +249,18 @@ export function DomainSelectDialog({ justifyContent: 'space-between', padding: '10px 14px', borderRadius: '8px', - background: isSelected ? 'var(--teal-dim)' : 'var(--surface-2)', - border: isSelected ? '1px solid var(--teal)' : '1px solid var(--line)', + background: isSelected ? 'var(--color-primary-container)' : 'var(--color-surface-container-high)', + border: isSelected ? '1px solid var(--color-primary)' : '1px solid var(--color-outline-variant)', cursor: 'pointer', transition: 'all var(--dur-fast) var(--ease)', - boxShadow: isSelected ? '0 0 12px var(--teal-dim)' : 'none', + boxShadow: isSelected ? '0 0 12px var(--color-primary-container)' : 'none', }} >
{opt.icon}
{opt.title} - {opt.desc} + {opt.desc}
@@ -447,4 +447,3 @@ export function ConfirmPurgeDialog({ ); } - diff --git a/packages/desktop/src/components/views/PostmanView.tsx b/packages/desktop/src/components/views/PostmanView.tsx index df7d90b..36f130d 100644 --- a/packages/desktop/src/components/views/PostmanView.tsx +++ b/packages/desktop/src/components/views/PostmanView.tsx @@ -35,6 +35,12 @@ export function PostmanView({ onDeleteRequest?: (id: string) => void; onUpdateSavedRequests?: (next: SavedRequest[]) => void; }) { + const routeTarget = activeTunnel + ? activeTunnel.publicUrl.includes('trycloudflare.com') + ? 'Cloudflare Edge' + : 'Public Tunnel' + : 'Local Loopback'; + // Request Sub-Tabs: 'body' | 'headers' | 'auth' | 'response' const [requestTab, setRequestTab] = useState<'body' | 'headers' | 'auth' | 'response'>('body'); const [responseSubTab, setResponseSubTab] = useState<'body' | 'headers'>('body'); @@ -655,6 +661,14 @@ export function PostmanView({ aria-label="Request URL or path" /> + + +