Fix: Enable selectable text in assistant responses (#56)
This commit is contained in:
		
							parent
							
								
									454e67da4f
								
							
						
					
					
						commit
						5ea5e86621
					
				@ -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;
 | 
			
		||||
 | 
			
		||||
@ -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;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user