fix(widgets): allow text selection in LoraInfoWidget description tab

This commit is contained in:
Will Miao
2026-07-17 18:33:59 +08:00
parent 681cc13e90
commit e04c22f83f
3 changed files with 60 additions and 44 deletions

View File

@@ -470,6 +470,10 @@ onMounted(() => {
color: var(--fg-color, #fff);
word-break: break-all;
margin-bottom: 8px;
/* Override node-level grab cursor and user-select:none from .lg-node.cursor-grab */
cursor: auto;
user-select: text;
-webkit-user-select: text;
}
.notes-field {
@@ -568,6 +572,10 @@ onMounted(() => {
color: var(--fg-color, #fff);
opacity: 0.85;
word-break: break-word;
/* Override node-level grab cursor and user-select:none from .lg-node.cursor-grab */
cursor: auto;
user-select: text;
-webkit-user-select: text;
}
.description-text :deep(p) {