dsh-composer-height
Raises the DSH Web composer's minimum text height from two lines (52px) to three lines (76px).
- Stars
- 0
- Language
- JavaScript
- Created
- Aug 18, 2026
- Updated
- Aug 18, 2026
Introduction
dsh-composer-height
DeepSeek Harness Web 输入框高度微调插件(client-only):把对话输入框文本区的最小高度从官方默认的两行(52px)提高到三行(76px)。
效果
- 空输入时文本区默认显示三行(76px),整个输入卡片随之增高(卡片总高从约 118px 变为约 142px);
- 输入内容超过三行后仍按官方 auto-grow 逻辑自动增高,直到官方最大高度
--dsh-composer-text-max-height; - 消息区的滚动避让由 DSH 自身实测
--dsh-composer-height完成,无需任何额外处理。
原理
官方输入框的 auto-grow 结构中,[data-input-mirror](visibility:hidden 的镜像 div,内容为草稿文本 + 换行)是唯一撑起文本区高度的在流元素,textarea 高度 100% 跟随、卡片高度自动适应。因此只需注入一条规则:
[data-input-mirror] {
min-height: 76px !important;
}
即可让文本区、卡片与消息区避让全部自适应,不修改任何 DSH 源码与内部状态。
调整高度
编辑 lib/client.js 顶部的 MIN_HEIGHT_PX 常量(当前 76 = 3 行;每行 24px),保存后重启 DSH 并 Ctrl+Shift+R 强刷。
安装
dsh plugin --profile web add github:tuogusa/dsh-composer-height
兼容 Profile:web(DSH Web GUI)。
验证
仓库自带离线验证脚本(8 项断言:host 空插件、样式注入内容与幂等性):
node verify.mjs
结构
cordis.patch.yml bundle patch(loader 行)
lib/index.js host 端(空插件,保持 loader 行 enabled)
lib/client.js client 端:注入 min-height 规则
verify.mjs 离线验证脚本
License
MIT