fix: tighten request table rows

This commit is contained in:
lutc5
2026-04-29 22:02:36 +08:00
parent 5c6754c6ae
commit 70803e5c76
5 changed files with 19 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
tag: tag:
description: "Release tag, for example v1.2.1" description: "Release tag, for example v1.2.2"
required: true required: true
permissions: permissions:

View File

@@ -8,7 +8,7 @@ The project is designed for tools such as Claude Code, Cline, Continue, OpenCode
## Current Version ## Current Version
The current desktop line is `v1.2.1`. The current desktop line is `v1.2.2`.
Release builds are produced by GitHub Actions for: Release builds are produced by GitHub Actions for:
@@ -306,7 +306,7 @@ The desktop bundle name is always `Lingma IPC Proxy`.
The release workflow is triggered by: The release workflow is triggered by:
- pushing a tag such as `v1.2.1` - pushing a tag such as `v1.2.2`
- manually running the `Release` workflow with a tag input - manually running the `Release` workflow with a tag input
Planned improvements: Planned improvements:

View File

@@ -11,7 +11,7 @@
## 当前版本 ## 当前版本
当前桌面端版本线:`v1.2.1` 当前桌面端版本线:`v1.2.2`
GitHub Actions 会在 Release 中产出: GitHub Actions 会在 Release 中产出:
@@ -415,8 +415,8 @@ Lingma IPC Proxy
发布方式: 发布方式:
```bash ```bash
git tag v1.2.1 git tag v1.2.2
git push origin v1.2.1 git push origin v1.2.2
``` ```
也可以在 GitHub Actions 页面手动运行 `Release` workflow并输入 tag。 也可以在 GitHub Actions 页面手动运行 `Release` workflow并输入 tag。

View File

@@ -222,7 +222,7 @@ onUnmounted(() => {
<span class="status-dot" :class="{ running: status.running }"></span> <span class="status-dot" :class="{ running: status.running }"></span>
<div> <div>
<strong>{{ status.running ? 'Proxy Running' : 'Proxy Stopped' }}</strong> <strong>{{ status.running ? 'Proxy Running' : 'Proxy Stopped' }}</strong>
<small>v1.2.1</small> <small>v1.2.2</small>
</div> </div>
</div> </div>
</aside> </aside>

View File

@@ -834,10 +834,11 @@ button {
.model-meta, .model-meta,
.cell-sub { .cell-sub {
margin-top: 3px; margin-top: 1px;
overflow: hidden; overflow: hidden;
color: var(--muted); color: var(--muted);
font-size: 12px; font-size: 12px;
line-height: 1.15;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
@@ -877,7 +878,7 @@ button {
.requests-panel .table-scroll { .requests-panel .table-scroll {
flex: 0 0 auto; flex: 0 0 auto;
--request-row-height: 72px; --request-row-height: 42px;
--request-head-height: 43px; --request-head-height: 43px;
min-height: calc(var(--request-head-height) + var(--request-row-height)); min-height: calc(var(--request-head-height) + var(--request-row-height));
max-height: calc(var(--request-head-height) + var(--request-row-height) * 5); max-height: calc(var(--request-head-height) + var(--request-row-height) * 5);
@@ -914,6 +915,12 @@ button {
vertical-align: middle; vertical-align: middle;
} }
.data-table tbody td {
padding-top: 3px;
padding-bottom: 3px;
line-height: 1.12;
}
.data-table th { .data-table th {
position: sticky; position: sticky;
top: 0; top: 0;
@@ -966,10 +973,10 @@ button {
.method-chip { .method-chip {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
min-height: 24px; min-height: 22px;
padding: 0 8px; padding: 0 7px;
border-radius: 7px; border-radius: 7px;
font-size: 12px; font-size: 11px;
font-weight: 680; font-weight: 680;
white-space: nowrap; white-space: nowrap;
} }