|
4 | 4 | <meta charset="UTF-8" /> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
6 | 6 | <title>State Inspector</title> |
| 7 | + <link rel="stylesheet" href="../../src/engine/theme/main.css" /> |
7 | 8 | <link rel="stylesheet" href="../../src/engine/ui/hubCommon.css" /> |
8 | 9 | <link rel="stylesheet" href="../shared/platformShell.css" /> |
9 | 10 | <link rel="stylesheet" href="../shared/debugInspectorTools.css" /> |
10 | 11 | </head> |
11 | | -<body class="tools-platform-tool-page" data-tool-id="state-inspector" data-tools-platform-page="tool"> |
| 12 | +<body class="tools-platform-tool-page tool-shell-page" data-tool-id="state-inspector" data-tools-platform-page="tool"> |
12 | 13 | <div data-tools-platform-header></div> |
13 | | - <div class="debug-tool-shell app-shell"> |
14 | | - <section class="panel debug-tool-panel"> |
15 | | - <h2>State Inspector</h2> |
16 | | - <p>Read-only runtime visibility for host context, shared project state, and persisted storage snapshots.</p> |
17 | | - <div class="debug-tool-actions"> |
18 | | - <button type="button" id="refreshSnapshotButton">Refresh Snapshot</button> |
19 | | - <button type="button" id="loadJsonButton">Inspect JSON</button> |
20 | | - </div> |
21 | | - <div id="stateInspectorStatus" class="debug-tool-meta">Inspector ready.</div> |
22 | | - </section> |
| 14 | + <div class="tool-shell-container"> |
| 15 | + <div class="tool-shell app-shell"> |
| 16 | + <aside class="tool-shell__left"> |
| 17 | + <section class="panel debug-tool-panel"> |
| 18 | + <h2>State Inspector</h2> |
| 19 | + <p>Read-only runtime visibility for host context, shared project state, and persisted storage snapshots.</p> |
| 20 | + <div class="debug-tool-actions"> |
| 21 | + <button type="button" id="refreshSnapshotButton">Refresh Snapshot</button> |
| 22 | + <button type="button" id="loadJsonButton">Inspect JSON</button> |
| 23 | + </div> |
| 24 | + <div id="stateInspectorStatus" class="debug-tool-meta">Inspector ready.</div> |
| 25 | + </section> |
| 26 | + </aside> |
23 | 27 |
|
24 | | - <section class="debug-tool-grid"> |
25 | | - <section class="panel debug-tool-panel"> |
26 | | - <h3>JSON Input</h3> |
27 | | - <p>Paste JSON to inspect arbitrary state payloads.</p> |
28 | | - <textarea id="stateJsonInput" rows="16" placeholder='{"example":"state"}'></textarea> |
29 | | - </section> |
| 28 | + <main class="tool-shell__center"> |
| 29 | + <section class="panel debug-tool-panel"> |
| 30 | + <h3>JSON Input</h3> |
| 31 | + <p>Paste JSON to inspect arbitrary state payloads.</p> |
| 32 | + <textarea id="stateJsonInput" rows="16" placeholder='{"example":"state"}'></textarea> |
| 33 | + </section> |
| 34 | + </main> |
30 | 35 |
|
31 | | - <section class="panel debug-tool-panel"> |
32 | | - <h3>Inspection Snapshot</h3> |
33 | | - <pre id="stateSnapshotOutput" class="debug-tool-readout">Snapshot output will appear here.</pre> |
34 | | - </section> |
35 | | - </section> |
| 36 | + <aside class="tool-shell__right"> |
| 37 | + <section class="panel debug-tool-panel"> |
| 38 | + <h3>Inspection Snapshot</h3> |
| 39 | + <pre id="stateSnapshotOutput" class="debug-tool-readout">Snapshot output will appear here.</pre> |
| 40 | + </section> |
| 41 | + </aside> |
| 42 | + </div> |
36 | 43 | </div> |
37 | 44 | <div data-tools-platform-status></div> |
38 | 45 | <script type="module" src="../shared/platformShell.js"></script> |
|
0 commit comments