feat: 改进输入框支持多行文本和发送按钮

1. 将Input组件替换为TextArea,支持多行文本输入和粘贴

2. 添加发送按钮,点击即可发送消息

3. Enter键用于换行,支持多行编辑

4. 在帮助信息中显示配置文件和数据库路径

5. 优化输入框样式和布局

🤖 Generated with CodeArts Agent
This commit is contained in:
JianFeeeee
2026-04-15 08:12:24 +08:00
parent fe4fe7c777
commit 195ca87577
3 changed files with 47 additions and 14 deletions

View File

@ -8,13 +8,23 @@ InputBox {
border: solid $primary;
}
InputBox Input {
InputBox TextArea {
width: 100%;
height: 5;
background: $surface-lighten-1;
color: $text;
border: none;
}
InputBox .input-buttons {
height: auto;
margin-top: 1;
}
InputBox Button {
margin: 0;
}
/* Config Section */
ConfigSection {
background: $surface;