codex - 💡(How to fix) Fix Chat input placeholder should not be selectable / copyable [2 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openai/codex#17082Fetched 2026-04-09 08:02:38
View on GitHub
Comments
2
Participants
2
Timeline
9
Reactions
0
Author
Timeline (top)
labeled ×3commented ×2closed ×1mentioned ×1
RAW_BUFFERClick to expand / collapse

What version of Codex CLI is running?

0.118.0

What subscription do you have?

Free

Which model were you using?

gpt-5.3-codex

What platform is your computer?

Darwin 25.4.0 arm64 arm

What terminal emulator and version are you using (if applicable)?

Ghostty

What issue are you seeing?

Chat input placeholder should not be selectable / copyable

<img width="362" height="65" alt="Image" src="https://github.com/user-attachments/assets/95ec6906-c171-4aa9-b031-cdab02048dd1" />

What steps can reproduce the bug?

Uploaded thread: 019d6b3f-d158-75d2-9391-cbab05dfce87

What is the expected behavior?

No response

Additional information

No response

extent analysis

TL;DR

The issue with the chat input placeholder being selectable and copyable may be resolved by modifying the CSS or HTML properties of the input field to prevent user selection.

Guidance

  • Verify that the issue is specific to the gpt-5.3-codex model and Codex CLI version 0.118.0 by testing with other models or versions.
  • Check the HTML and CSS properties of the chat input field to see if there are any styles or attributes that are causing the placeholder to be selectable.
  • Consider adding a CSS rule to set user-select: none on the input field to prevent user selection.
  • Test the issue in different terminal emulators to determine if it's specific to Ghostty.

Example

/* example CSS rule to prevent user selection */
input.chat-input {
  user-select: none;
}

Notes

The provided information does not include the actual code or implementation details, so the suggested fix is based on general HTML and CSS principles. The issue may be specific to the Codex CLI or the gpt-5.3-codex model, and further investigation is needed to determine the root cause.

Recommendation

Apply workaround: Add a CSS rule to prevent user selection of the input field, as the issue may be related to the styling or implementation of the chat input field.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING