feat: modern panel redesign, dot dividers, sidebar drag-grip fix - #23
Merged
Conversation
Rounded-card request/response panels with a dotted drag handle, plus a scoped grip handle to fix the sidebar's whole-row grab cursor. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…ng gap TS 5.9 deprecates moduleResolution "node" (removed in TS 7.0). Since this extension has no native Node runtime resolution (everything ships through Vite bundles), "bundler" is the correct replacement. That switch exposed a packaging gap in @monaco-editor/react's deep import into monaco-editor, which silently degraded a completion-provider callback to implicit any; annotated it explicitly instead of suppressing the error. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…tor and hover line
…tips - Remove the decorative gradient accent lines on the request/response panels and the folder/request row accent bars — they didn't carry meaning and just added visual noise. - Reclaim horizontal/vertical space in the sidebar tree: drop the connector line, tighten row gaps/margins/line-height, shrink the drag grip and row-level action buttons, reduce per-depth indentation, and overlay hover actions on the label (absolutely positioned) instead of permanently reserving flex width for them. - Give row-level action buttons and dropdown triggers an opaque backing now that they overlay label text, and fix a stacking-context bug where transform-based centering trapped an open dropdown-menu's z-index, letting a folder's expanded children paint over it. - Fix the "More Actions" dropdown menu rendering with a translucent theme background (some themes give --vscode-dropdown-background partial alpha, which only looks opaque under VS Code's native compositor) by using the same solid token the tooltip uses. - Add a `top-right`/`bottom-right` Tooltip position (right-edge anchored instead of centered) and apply it across every tooltip that sits at the end of a row/toolbar, fixing right-edge clipping. - Fix the export submenu's "Back" chevron rendering right-pointing instead of left-pointing — it referenced an undefined `.rotate-180` utility class. - Make the Monaco editor theme follow VS Code's actual active color theme (via the vscode-* class VS Code keeps live on <body>) instead of a hardcoded "restlab-dark" theme name that was never registered with Monaco and had no effect. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
slverma
pushed a commit
that referenced
this pull request
Jul 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
draggablenow lives on a dedicated grip handle that fades in on hover, which also resolves click-vs-drag ambiguity. ExtractedFolderItemout ofSidebar.tsx(was 678 lines) into its own file to stay under the project's 500-line component limit.top-right/bottom-right) to stop tooltips clipping at panel edges, fix a missing.rotate-180utility (broke the export submenu's back arrow), and make the Monaco editor theme follow VS Code's actual color theme instead of a never-registered hardcoded theme name.tsconfig.jsonoff the deprecatedmoduleResolution: "node"to"bundler"(TS 7.0 removal), and fix the@monaco-editor/reacttyping gap it exposed.Test plan
npx tsc --noEmitpasses clean (no test suite/lint script in this repo, per project convention)