Skip to content

Commit dde8be8

Browse files
author
DavidQ
committed
Increase PREV/NEXT label font size and apply color #3600af - PR 11.31
1 parent cf04d65 commit dde8be8

4 files changed

Lines changed: 41 additions & 51 deletions

File tree

docs/dev/codex_commands.md

Lines changed: 15 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,26 @@
11
MODEL: GPT-5.3-codex
2-
REASONING: medium
2+
REASONING: low
33

44
TASK:
5-
Apply PR 11.30.
5+
Apply PR 11.31.
66

7-
Move the Workspace Manager status/header fields into one shared render block/component so we can rearrange it later without hunting through scattered code.
7+
Locate the PREV/NEXT navigation label rendering in Workspace Manager.
88

9-
Target visible content currently similar to:
10-
Workspace
11-
sample-0901-vector-map
12-
shared workspace state synced
13-
PREV
14-
Parallax Scene Studio
15-
NEXT
16-
Workspace: Loaded
17-
Shared Palette: Sample 1902 Workspace Palette
18-
Shared Assets: No shared asset selected
19-
20-
Required behavior:
21-
- Consolidate this into one render path/component/function.
22-
- Preserve current working Workspace Manager behavior.
23-
- Preserve full tool display.
24-
- Preserve child tool launch/palette handoff behavior.
25-
- Do not change payload schema.
26-
27-
Shared Assets rule:
28-
- "Shared Assets: No shared asset selected" should not be shown as a permanent noisy status for sample 1902 if there is no shared selected asset concept.
29-
- Show Shared Assets only when the workspace actually provides meaningful shared asset selection/data.
30-
- Do not create fake shared assets.
31-
- Do not use hidden defaults.
32-
- Do not treat absent shared assets as an error.
9+
Update styling for the tool name text:
10+
- increase font size (e.g., 1.2x–1.4x current or equivalent px/em bump)
11+
- set color to #3600af
3312

3413
Do NOT:
35-
- change fullscreen title/description logic unless required by shared status rendering
36-
- change workspace fan-out
37-
- change button enablement
38-
- change tool payload handoff
39-
- touch start_of_day folders
40-
- add broad refactors
14+
- change navigation logic
15+
- change payload logic
16+
- change layout containers
17+
- add new components
4118

4219
Validation:
4320
node --check tools/shared/platformShell.js
44-
node ./tests/runtime/LaunchSmokeAllEntries.test.mjs --samples --sample-range=1902-1902 --tools
45-
46-
Manual validation:
47-
Open sample 1902 -> Workspace Manager.
48-
Confirm:
49-
- workspace status/header content still appears
50-
- Shared Palette shows Sample 1902 Workspace Palette
51-
- Shared Assets does not show misleading permanent "No shared asset selected" unless the UI intentionally shows neutral optional status
52-
- all expected tools still visible/openable
5321

54-
REPORT:
55-
Write docs/dev/reports/PR_11_30_validation.txt with:
56-
- changed files
57-
- render block/function name
58-
- Shared Assets display rule
59-
- validation results
22+
Manual:
23+
Open Workspace Manager
24+
Verify PREV/NEXT tool name:
25+
- larger font
26+
- color #3600af

docs/dev/commit_comment.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Componentize Workspace Manager status block and clean shared asset display - PR 11.30
1+
Increase PREV/NEXT label font size and apply color #3600af - PR 11.31
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# PR 11.31 — Navigation Label Style Update
2+
3+
## Purpose
4+
Improve visibility of PREV/NEXT navigation labels in Workspace Manager.
5+
6+
## Required Change
7+
Update the label styling for the active navigation tool name (e.g., "Vector Asset Studio"):
8+
9+
- Increase font size (visibly larger than current baseline)
10+
- Set text color to: #3600af
11+
12+
## Scope
13+
- Only affects PREV/NEXT label display styling.
14+
- Do not change navigation logic.
15+
- Do not change layout structure beyond font/color.
16+
- Do not change Workspace payload or tool behavior.
17+
18+
## Acceptance
19+
- PREV/NEXT tool label is visibly larger.
20+
- Text color is #3600af.
21+
- Navigation behavior unchanged.
22+
- No regressions in layout.

tools/shared/platformShell.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -586,8 +586,9 @@ html:fullscreen body.tools-platform-surface .tools-platform-frame__project-actio
586586
padding: 6px 10px;
587587
border: 1px solid var(--line, rgba(221, 214, 254, 0.26));
588588
border-radius: 10px;
589-
color: var(--muted, #e9ddff);
590-
font-size: 0.9rem;
589+
color: #3600af;
590+
font-size: 1.2rem;
591+
font-weight: 900;
591592
white-space: nowrap;
592593
}
593594

0 commit comments

Comments
 (0)