diff --git a/frontend/src/components/chat/message-input/AttachButton.tsx b/frontend/src/components/chat/message-input/AttachButton.tsx index 207ebd88..5ca2214b 100644 --- a/frontend/src/components/chat/message-input/AttachButton.tsx +++ b/frontend/src/components/chat/message-input/AttachButton.tsx @@ -14,7 +14,7 @@ export function AttachButton({ onAttach }: AttachButtonProps) { className="rounded-full p-1.5 text-text-tertiary transition-colors duration-200 hover:bg-surface-hover hover:text-text-primary active:scale-95 dark:text-text-dark-tertiary dark:hover:bg-surface-dark-hover dark:hover:text-text-dark-primary" aria-label="Attach file" > - + ); } diff --git a/frontend/src/components/chat/message-input/ContextUsageIndicator.tsx b/frontend/src/components/chat/message-input/ContextUsageIndicator.tsx index dd7802ff..3ee5b900 100644 --- a/frontend/src/components/chat/message-input/ContextUsageIndicator.tsx +++ b/frontend/src/components/chat/message-input/ContextUsageIndicator.tsx @@ -37,11 +37,11 @@ export const ContextUsageIndicator = ({ usage }: { usage: ContextUsageInfo }) => return (
{formattedPercentage}% - {model.name} diff --git a/frontend/src/components/chat/permission-mode-selector/PermissionModeSelector.tsx b/frontend/src/components/chat/permission-mode-selector/PermissionModeSelector.tsx index 7924d581..4e51e40f 100644 --- a/frontend/src/components/chat/permission-mode-selector/PermissionModeSelector.tsx +++ b/frontend/src/components/chat/permission-mode-selector/PermissionModeSelector.tsx @@ -47,7 +47,7 @@ export const PermissionModeSelector = memo(function PermissionModeSelector({ renderItem={(mode, isSelected) => ( <> {mode.label} diff --git a/frontend/src/components/chat/thinking-mode-selector/ThinkingModeSelector.tsx b/frontend/src/components/chat/thinking-mode-selector/ThinkingModeSelector.tsx index 4fdc33e4..d1139340 100644 --- a/frontend/src/components/chat/thinking-mode-selector/ThinkingModeSelector.tsx +++ b/frontend/src/components/chat/thinking-mode-selector/ThinkingModeSelector.tsx @@ -47,7 +47,7 @@ export const ThinkingModeSelector = memo(function ThinkingModeSelector({ renderItem={(mode, isSelected) => (
{mode.label} diff --git a/frontend/src/components/ui/primitives/Dropdown.tsx b/frontend/src/components/ui/primitives/Dropdown.tsx index c5d8aa62..902be30d 100644 --- a/frontend/src/components/ui/primitives/Dropdown.tsx +++ b/frontend/src/components/ui/primitives/Dropdown.tsx @@ -124,9 +124,9 @@ function DropdownInner({ const showIconOnly = (compactOnMobile || forceCompact) && LeftIcon; const labelClasses = showIconOnly ? forceCompact - ? 'hidden whitespace-nowrap text-xs font-medium text-text-primary dark:text-text-dark-secondary' - : 'hidden lg:inline whitespace-nowrap text-xs font-medium text-text-primary dark:text-text-dark-secondary' - : 'whitespace-nowrap text-xs font-medium text-text-primary dark:text-text-dark-secondary'; + ? 'hidden whitespace-nowrap text-2xs font-medium text-text-primary dark:text-text-dark-secondary' + : 'hidden lg:inline whitespace-nowrap text-2xs font-medium text-text-primary dark:text-text-dark-secondary' + : 'whitespace-nowrap text-2xs font-medium text-text-primary dark:text-text-dark-secondary'; const chevronClasses = showIconOnly ? forceCompact ? 'hidden' @@ -146,7 +146,7 @@ function DropdownInner({ > {LeftIcon && ( )} @@ -171,7 +171,7 @@ function DropdownInner({ onKeyDown={handleSearchKeyDown} placeholder={searchPlaceholder} autoFocus={!isMobile} - className="h-7 w-full rounded-lg border border-border bg-surface-tertiary py-1 pl-7 pr-7 text-xs text-text-primary transition-colors duration-200 placeholder:text-text-quaternary focus:border-border-hover focus:outline-none dark:border-border-dark dark:bg-surface-dark-tertiary dark:text-text-dark-primary dark:placeholder:text-text-dark-quaternary dark:focus:border-border-dark-hover" + className="h-7 w-full rounded-lg border border-border bg-surface-tertiary py-1 pl-7 pr-7 text-2xs text-text-primary transition-colors duration-200 placeholder:text-text-quaternary focus:border-border-hover focus:outline-none dark:border-border-dark dark:bg-surface-dark-tertiary dark:text-text-dark-primary dark:placeholder:text-text-dark-quaternary dark:focus:border-border-dark-hover" /> {searchQuery && (