b9e132a92c
The amber "ملاحظة / Note" button (#600) lives in the Executive Meetings page header. The whole header is hidden in fullscreen, so the quick-note panel — which itself already works in fullscreen — had no entry point. User had to exit fullscreen, add the note, then re-enter. Added a floating amber pill next to the existing fullscreen-exit pill at the top-end of the page. Mirrors the header button exactly: - Same handler (setQuickNoteOpen + setQuickNoteTrigger). - Same gating: only Schedule section, hidden while the panel is open or while the bulk-actions toolbar is active. - Same i18n key (executiveMeetings.quickNote.label) — no new strings. - Same amber palette (bg-amber-100 / border-amber-300 / text-[#0B1E3F]) with the Plus icon and label. - Positioned at `top-3 end-14` so it sits inboard of the exit pill (`end-3`, w-9) in both LTR (to the left) and RTL (to the right), with no overlap. - `print:hidden`, `data-testid="em-fullscreen-quicknote"`. Single JSX addition (~36 lines incl. comment) in artifacts/tx-os/src/pages/executive-meetings.tsx, right after the exit-fullscreen button. No other files touched. No new state, no new i18n, no API changes, no dependency changes. Non-fullscreen layout is untouched. tx-os tsc passes.