feat(ui): 全站文字默认不可选(输入框等可编辑区例外)
body 设 user-select:none,避免拖选问候语/时间/导航等装饰文字; input/textarea/contenteditable 及 [data-selectable] 仍可正常选中复制。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
25791f9268
commit
68df772ba5
@ -46,6 +46,19 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
/* 全站文字默认不可选;输入框/文本域/可编辑区例外,加 data-selectable 可单独放开 */
|
||||
body {
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
input,
|
||||
textarea,
|
||||
[contenteditable='true'],
|
||||
[data-selectable] {
|
||||
-webkit-user-select: text;
|
||||
user-select: text;
|
||||
}
|
||||
|
||||
/* 选中文本配色 */
|
||||
::selection {
|
||||
background: var(--color-accent);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user