版本管理,优化

This commit is contained in:
zhongluofeng
2026-08-11 17:19:36 +08:00
parent 2f20161010
commit 6c7897bf47
33 changed files with 1361 additions and 39 deletions
+11
View File
@@ -161,6 +161,17 @@
}
}
/* 桌面应用体验:默认禁止文本选中(按钮/下拉框/标题等控件文字不可拖动选择),
输入框、文本域、可编辑区域仍允许选择/复制 */
html, body, #app {
user-select: none;
-webkit-user-select: none;
}
input, textarea, [contenteditable='true'] {
user-select: text;
-webkit-user-select: text;
}
#app {
width: 100%;
height: 100vh;