Fix text selection in chat bubbles

Obsidian sets user-select: none on many elements by default.
Add user-select: text and cursor: text to .vc-bubble so messages
can be selected and copied.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
svemagie
2026-03-04 21:19:39 +01:00
parent 5a27b998c3
commit afa9d9a215
+3
View File
@@ -197,6 +197,9 @@
border-radius: 12px;
font-size: 13px;
line-height: 1.55;
user-select: text;
-webkit-user-select: text;
cursor: text;
}
.vc-msg--user .vc-bubble {