惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
B
Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
博客园_首页
C
Check Point Blog
博客园 - 【当耐特】
美团技术团队
Last Week in AI
Last Week in AI
A
About on SuperTechFans
雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
J
Java Code Geeks
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
F
Fortinet All Blogs

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(control-ui): prevent iOS input zoom · openclaw/opencl...
BunsDev · 2026-05-14 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -14,6 +14,7 @@ Docs: https://docs.openclaw.ai

1414

- Control UI/chat: reconcile terminal and reconnect run cleanup with cached session activity, stale compaction/fallback indicators, and a compact composer run-status chip so completed or interrupted turns do not leave Stop active. Fixes #76874 and #64220; refs #71630. Thanks @BunsDev.

1515

- Maintainer tooling: clarify which pnpm test/check commands are safe locally versus inside Codex worktrees, routing linked-worktree gates through node wrappers and Crabbox/Testbox.

1616

- iOS/chat: resize PhotosPicker image attachments to capped JPEGs before staging and sending, stripping source metadata and keeping oversized camera photos under the chat upload budget. Fixes #68524. Thanks @BunsDev.

17+

- Control UI: keep shared form, config, and usage text-entry controls at 16px on touch-primary devices while preserving chat composer input sizing, so iOS Safari no longer auto-zooms focused fields. Fixes #64651; carries forward #64673. Thanks @NianJiuZst and @BunsDev.

1718

- Codex harness: classify native app-server token-refresh logout and relogin failures as authentication refresh errors, so users get re-authentication guidance instead of a raw runtime failure.

1819

- Agents/trajectory: make the trajectory flush cleanup timeout configurable with `OPENCLAW_TRAJECTORY_FLUSH_TIMEOUT_MS`, preserving the 10s default while slower stores drain. Refs #75839. Thanks @BunsDev.

1920

- Codex startup: treat selectable configured OpenAI agent models as Codex runtime requirements during plugin auto-enable, startup planning, and doctor install repair, so Anthropic-primary configs can still switch to OpenAI/Codex cleanly.

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,10 @@ function readLayoutCss(): string {

55

return readStyleSheet("ui/src/styles/chat/layout.css");

66

}

77
8+

function readBaseCss(): string {

9+

return readStyleSheet("ui/src/styles/base.css");

10+

}

11+
812

describe("chat layout styles", () => {

913

it("styles queued-message steering controls and pending indicators", () => {

1014

const css = readLayoutCss();

@@ -25,7 +29,11 @@ describe("chat layout styles", () => {

2529
2630

it("keeps composer text scale-driven while preserving mobile input zoom safety", () => {

2731

const css = readLayoutCss();

32+

const baseCss = readBaseCss();

2833
34+

expect(baseCss).toContain(

35+

"--control-ui-input-text-size: max(16px, calc(14px * var(--control-ui-text-scale)));",

36+

);

2937

expect(css).toContain("font-size: var(--control-ui-input-text-size);");

3038

expect(css).toContain(".agent-chat__composer-combobox > textarea");

3139

expect(css).toContain(".chat-compose .chat-compose__field textarea");

Original file line numberDiff line numberDiff line change

@@ -942,6 +942,14 @@

942942

box-shadow var(--duration-fast) ease;

943943

}

944944
945+

@media (hover: none) and (pointer: coarse) {

946+

.field input,

947+

.field textarea,

948+

.field select {

949+

font-size: 16px;

950+

}

951+

}

952+
945953

.field input:focus,

946954

.field textarea:focus,

947955

.field select:focus {

Original file line numberDiff line numberDiff line change

@@ -17,6 +17,14 @@ describe("agent fallback chip styles", () => {

1717

expect(css).toContain("outline-offset: 2px;");

1818

expect(css).toContain(".agent-chip-input .chip-remove:disabled");

1919

});

20+
21+

it("keeps touch-primary field controls large enough to avoid iOS focus zoom", () => {

22+

const css = readComponentsCss();

23+
24+

expect(css).toMatch(

25+

/@media \(hover: none\) and \(pointer: coarse\) \{[\s\S]*\.field input,[\s\S]*\.field textarea,[\s\S]*\.field select \{[\s\S]*font-size: 16px;/,

26+

);

27+

});

2028

});

2129
2230

describe("sessions filter styles", () => {

Original file line numberDiff line numberDiff line change

@@ -1392,6 +1392,20 @@

13921392

border-color: var(--border);

13931393

}

13941394
1395+

@media (hover: none) and (pointer: coarse) {

1396+

.config-search__input,

1397+

.settings-theme-import__input,

1398+

.config-raw-field textarea,

1399+

.cfg-input,

1400+

.cfg-input--sm,

1401+

.cfg-textarea,

1402+

.cfg-textarea--sm,

1403+

.cfg-number__input,

1404+

.cfg-select {

1405+

font-size: 16px;

1406+

}

1407+

}

1408+
13951409

/* Segmented Control */

13961410

.cfg-segmented {

13971411

display: inline-flex;

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,16 @@

1+

import { describe, expect, it } from "vitest";

2+

import { readStyleSheet } from "../../../test/helpers/ui-style-fixtures.js";

3+
4+

function readConfigCss(): string {

5+

return readStyleSheet("ui/src/styles/config.css");

6+

}

7+
8+

describe("config styles", () => {

9+

it("keeps touch-primary config text controls large enough to avoid iOS focus zoom", () => {

10+

const css = readConfigCss();

11+
12+

expect(css).toMatch(

13+

/@media \(hover: none\) and \(pointer: coarse\) \{[\s\S]*\.config-search__input,[\s\S]*\.settings-theme-import__input,[\s\S]*\.config-raw-field textarea,[\s\S]*\.cfg-input,[\s\S]*\.cfg-input--sm,[\s\S]*\.cfg-textarea,[\s\S]*\.cfg-textarea--sm,[\s\S]*\.cfg-number__input,[\s\S]*\.cfg-select \{[\s\S]*font-size: 16px;/,

14+

);

15+

});

16+

});

Original file line numberDiff line numberDiff line change

@@ -356,6 +356,16 @@

356356

font-size: 12px;

357357

}

358358
359+

@media (hover: none) and (pointer: coarse) {

360+

.usage-date-input,

361+

.usage-select,

362+

.usage-query-input,

363+

.usage-filters-inline select,

364+

.usage-filters-inline input[type="text"] {

365+

font-size: 16px;

366+

}

367+

}

368+
359369

.usage-query-input::placeholder {

360370

color: var(--muted);

361371

opacity: 0.7;

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,16 @@

1+

import { describe, expect, it } from "vitest";

2+

import { readStyleSheet } from "../../../test/helpers/ui-style-fixtures.js";

3+
4+

function readUsageCss(): string {

5+

return readStyleSheet("ui/src/styles/usage.css");

6+

}

7+
8+

describe("usage styles", () => {

9+

it("keeps touch-primary usage text controls large enough to avoid iOS focus zoom", () => {

10+

const css = readUsageCss();

11+
12+

expect(css).toMatch(

13+

/@media \(hover: none\) and \(pointer: coarse\) \{[\s\S]*\.usage-date-input,[\s\S]*\.usage-select,[\s\S]*\.usage-query-input,[\s\S]*\.usage-filters-inline select,[\s\S]*\.usage-filters-inline input\[type="text"\] \{[\s\S]*font-size: 16px;/,

14+

);

15+

});

16+

});