fix(core): handle text overflow styles for search box (#8054)

This commit is contained in:
SOUMITRA-SAHA
2024-09-03 14:17:29 +05:30
committed by GitHub
parent bd8c844e75
commit bc306faa2c
2 changed files with 9 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ export const root = style({
padding: '0 12px',
position: 'relative',
whiteSpace: 'nowrap',
overflow: 'hidden',
});
export const icon = style({
marginRight: '8px',
@@ -28,3 +29,8 @@ export const shortcutHint = style({
color: cssVarV2('text/tertiary'),
fontSize: cssVar('fontBase'),
});
export const quickSearchBarEllipsisStyle = style({
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
});

View File

@@ -22,7 +22,9 @@ export function QuickSearchInput({ onClick, ...props }: QuickSearchInputProps) {
onClick={onClick}
>
<SearchIcon className={styles.icon} />
{t['Quick search']()}
<span className={styles.quickSearchBarEllipsisStyle}>
{t['Quick search']()}
</span>
<div className={styles.spacer} />
<div className={styles.shortcutHint}>
{isMac ? ' ⌘ + K' : ' Ctrl + K'}