mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
fix(core): handle text overflow styles for search box (#8054)
This commit is contained in:
@@ -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',
|
||||
});
|
||||
|
||||
@@ -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'}
|
||||
|
||||
Reference in New Issue
Block a user