fix: v1.3.1 - 四项优化

1. VRAM/内存进度条改为仅 sticky 置顶显示
   - 去掉页面内重复的 vram-display 进度条
   - 只保留顶部 sticky bar,滚动时始终可见

2. 去掉参数修改标记
   - 不再用红色线框标记已更改的参数

3. 命令区域简化
   - 去掉独立的「复制命令」和「重新生成」按钮
   - 复制按钮改为命令文本框右下角悬空小按钮

4. h2 标题 margin-top 改为 0
This commit is contained in:
2026-07-19 23:48:18 +08:00
parent 3c27a205e5
commit fb3d7290bf
3 changed files with 41 additions and 37 deletions
+4 -5
View File
@@ -134,12 +134,11 @@
<!-- Generated Command -->
<section class="panel command-panel">
<h2>📋 生成命令</h2>
<div class="command-output" id="command-output">请在上方配置参数...</div>
<div class="command-hint" id="command-hint"></div>
<div class="command-actions">
<button onclick="copyCommand()" class="btn-copy">📋 复制命令</button>
<button onclick="generateCommand()" class="btn-gen">🔄 重新生成</button>
<div class="command-output-wrap">
<div class="command-output" id="command-output">请在上方配置参数...</div>
<button class="command-copy-btn" onclick="copyCommand()" id="copy-btn">📋 复制</button>
</div>
<div class="command-hint" id="command-hint"></div>
</section>
</div>
<script src="/js/main.js"></script>