Skip to content

Commit 0895eae

Browse files
author
DavidQ
committed
Remove brackets from PREV/NEXT labels - PR 11.7
1 parent b66fd2a commit 0895eae

6 files changed

Lines changed: 6 additions & 10 deletions

File tree

docs/dev/codex_commands.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
model: gpt-5.3-codex
2-
3-
Apply PR_11_6_NAV_BUTTON_POLISH
4-
5-
- Increase PREV/NEXT size
6-
- Add padding
7-
- Match toolbar buttons
8-
- CSS only
1+
Apply PR_11_7_NAV_LABEL_CLEANUP: remove [ ] from PREV/NEXT labels.

docs/dev/commit_comment.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Increase PREV/NEXT size and padding - PR 11.6
1+
Remove brackets from PREV/NEXT labels - PR 11.7

docs/dev/reports/REPORT_PR_11_7.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Cleaner navigation labels applied.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update labels PREV/NEXT (no brackets). CSS/markup only.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove brackets from PREV/NEXT labels for cleaner UI.

tools/shared/platformShell.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,7 @@ function renderWorkspaceSummary(currentTool) {
14051405
<strong class="tools-platform-frame__project-name">${escapeHtml(workspaceName)}${escapeHtml(dirtyMark)}</strong>
14061406
<span class="tools-platform-frame__project-meta">${escapeHtml(readiness)}</span>
14071407
</div>
1408-
<section class="tool-host-pager" aria-label="Workspace tool pager" data-tool-host-pager><button type="button" class="tool-host-pager__button" data-tool-host-prev>[PREV]</button><span class="tool-host-pager__name" data-tool-host-current-label>${escapeHtml(currentTool?.displayName || "Tool")}</span><button type="button" class="tool-host-pager__button" data-tool-host-next>[NEXT]</button></section>
1408+
<section class="tool-host-pager" aria-label="Workspace tool pager" data-tool-host-pager><button type="button" class="tool-host-pager__button" data-tool-host-prev>PREV</button><span class="tool-host-pager__name" data-tool-host-current-label>${escapeHtml(currentTool?.displayName || "Tool")}</span><button type="button" class="tool-host-pager__button" data-tool-host-next>NEXT</button></section>
14091409
</div>
14101410
`;
14111411
}

0 commit comments

Comments
 (0)