feat(game): 添加长按取消下注功能和优化控制组件

- 在桌面和移动版动物游戏组件中添加长按取消下注功能
- 新增 LongPressProgress 组件显示长按进度动画
- 重构游戏控制组件,移除增加/减少投注数量按钮
- 更新投注逻辑,优化单笔投注金额计算方式
- 修复移动端触摸目标选择器样式问题
- 添加右键菜单禁用和键盘删除操作支持
- 更新多语言文件中的游戏说明和取消投注标签
- 优化自动托管运行器中的投注分组逻辑
This commit is contained in:
JiaJun
2026-07-17 18:22:14 +08:00
parent 2a76f1d722
commit 1b7557e2cc
17 changed files with 373 additions and 274 deletions

View File

@@ -197,6 +197,17 @@
}
@layer utilities {
.mobile-animal-touch-target,
.mobile-animal-touch-target * {
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
.mobile-animal-touch-target img {
-webkit-user-drag: none;
}
.auth-password-input::-ms-clear,
.auth-password-input::-ms-reveal {
display: none;