Fix: Enable selectable text in assistant responses (#56)

This commit is contained in:
Sarang19 2025-07-08 23:56:53 +05:30
parent 454e67da4f
commit 5ea5e86621
2 changed files with 12 additions and 0 deletions

View File

@ -98,6 +98,12 @@ export class AskView extends LitElement {
user-select: none;
}
/* Allow text selection in assistant responses */
.response-container, .response-container * {
user-select: text !important;
cursor: text !important;
}
.response-container pre {
background: rgba(0, 0, 0, 0.4) !important;
border-radius: 8px !important;

View File

@ -82,6 +82,12 @@ export class AssistantView extends LitElement {
user-select: none;
}
/* Allow text selection in insights responses */
.insights-container, .insights-container *, .markdown-content {
user-select: text !important;
cursor: text !important;
}
/* highlight.js 스타일 추가 */
.insights-container pre {
background: rgba(0, 0, 0, 0.4) !important;