From 1e07c25df8441198e0adcdaad3d5f0a798236e63 Mon Sep 17 00:00:00 2001 From: Trevor Hart Date: Sun, 29 Mar 2026 21:55:56 -0400 Subject: [PATCH] feat: enable text selection in detail panel Main prevents text selection in the detail toolbar and body, making it impossible to copy skill content, metadata, or file paths. This adds user-select: text and cursor: text so users can select and copy any text in the detail view. Co-Authored-By: Claude Opus 4.6 --- styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/styles.css b/styles.css index 521f869..13131b8 100644 --- a/styles.css +++ b/styles.css @@ -263,6 +263,8 @@ padding: 10px 16px 8px; border-bottom: 1px solid var(--background-modifier-border); flex-shrink: 0; + -webkit-user-select: text; + user-select: text; } .as-toolbar-top { @@ -409,6 +411,9 @@ flex: 1; overflow-y: auto; min-height: 0; + -webkit-user-select: text; + user-select: text; + cursor: text; } .as-detail-preview {