Image upload in replies, multi-image articles, UX fixes

Add image support to InlineReplyBox (paste, file picker), paste-to-upload
in article editor, multi-select for article image toolbar. Fix emoji picker
opening off-screen (right-align), enlarge emoji/attach buttons, make note
card names clickable to open profile.
This commit is contained in:
Jure
2026-03-24 16:04:30 +01:00
parent f4e7c2d7cd
commit 4e04ad38c3
6 changed files with 180 additions and 22 deletions

View File

@@ -19,7 +19,7 @@ export function EmojiPicker({ onSelect, onClose }: EmojiPickerProps) {
return (
<>
<div className="fixed inset-0 z-[9]" onClick={onClose} />
<div className="absolute bottom-7 left-0 bg-bg-raised border border-border shadow-lg z-10 w-64">
<div className="absolute bottom-7 right-0 bg-bg-raised border border-border shadow-lg z-10 w-64">
{/* Group tabs */}
<div className="flex border-b border-border">
{EMOJI_GROUPS.map((g, i) => (