larkway 0.3.47 → 0.3.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/README.zh.md +1 -1
- package/dist/web/public/style.css +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
You @ the bot in a Feishu thread. It runs on your machine — reading your real codebase, executing commands, opening MRs — and posts the result back. You define what the agent knows and what it can do. Larkway just carries the messages.
|
|
10
10
|
|
|
11
|
-
**Current release: v0.3.
|
|
11
|
+
**Current release: v0.3.48**
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
package/README.zh.md
CHANGED
|
@@ -3936,11 +3936,14 @@ textarea.input {
|
|
|
3936
3936
|
}
|
|
3937
3937
|
.bk2-sel-desc { flex: 1; min-width: 0; font-size: 12px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
3938
3938
|
.bk2-select .icon { width: 15px; height: 15px; color: var(--faint); flex-shrink: 0; }
|
|
3939
|
+
/* 菜单走文档流内展开(不用 absolute):外层 .ac-layer 有 overflow:hidden
|
|
3940
|
+
圆角裁剪,浮层会被裁得只剩一两项「看起来没有选项」—— in-flow 展开时卡片
|
|
3941
|
+
自然撑高,免疫任何祖先裁剪(2026-07-10 本机部署实测修复)。 */
|
|
3939
3942
|
.bk2-menu {
|
|
3940
|
-
|
|
3943
|
+
margin-top: 6px;
|
|
3941
3944
|
border: 1px solid var(--border); border-radius: 11px;
|
|
3942
3945
|
background: #fff; overflow: hidden;
|
|
3943
|
-
box-shadow: 0
|
|
3946
|
+
box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
|
|
3944
3947
|
}
|
|
3945
3948
|
.bk2-mi {
|
|
3946
3949
|
display: flex; align-items: baseline; gap: 10px;
|