feat(ui): copy song fields from song info via double-click

Double-click the Title, Artist, or Album value to copy plain text to the
clipboard with toast feedback. Apply user-select: none on those cells so
double-click does not trigger word selection.
This commit is contained in:
Maxim Isaev
2026-04-26 17:33:58 +03:00
parent 1dcc1e101c
commit f92cfa183d
2 changed files with 31 additions and 3 deletions
+5
View File
@@ -1394,6 +1394,11 @@
padding: 4px 16px 4px 8px;
word-break: break-all;
}
/* Double-click copies; avoid browser selecting word on dblclick */
.song-info-value--no-select {
user-select: none;
-webkit-user-select: none;
}
.song-info-divider {
padding: 6px 0;
border-bottom: 1px solid var(--border-subtle);