Conversation
🎭 Playwright Tests:
|
📝 WalkthroughWalkthroughChanges modify styling and configuration for dark mode appearance. Index.html adds dark-mode CSS preferences, manifest.json removes a background color property, and the design system stylesheet removes CSS variable-based body styling. Total impact: +7/-4 lines across three files. Changes
Comment |
🎨 Storybook Build Status✅ Build completed successfully! ⏰ Completed at: 01/24/2026, 01:54:56 AM UTC 🔗 Links🎉 Your Storybook is ready for review! |
Bundle Size ReportSummary
Category Glance Per-category breakdownApp Entry Points — 22.4 kB (baseline 22.3 kB) • 🔴 +124 BMain entry bundles and manifests
Status: 1 added / 1 removed Graph Workspace — 950 kB (baseline 950 kB) • ⚪ 0 BGraph editor runtime, canvas, workflow orchestration
Status: 1 added / 1 removed Views & Navigation — 80.7 kB (baseline 80.7 kB) • ⚪ 0 BTop-level views, pages, and routed surfaces
Status: 9 added / 9 removed Panels & Settings — 440 kB (baseline 440 kB) • 🟢 -8 BConfiguration panels, inspectors, and settings screens
Status: 12 added / 12 removed User & Accounts — 3.94 kB (baseline 3.94 kB) • ⚪ 0 BAuthentication, profile, and account management bundles
Status: 3 added / 3 removed Editors & Dialogs — 2.83 kB (baseline 2.83 kB) • ⚪ 0 BModals, dialogs, drawers, and in-app editors
Status: 2 added / 2 removed UI Components — 33.7 kB (baseline 33.7 kB) • ⚪ 0 BReusable component library chunks
Status: 5 added / 5 removed Data & Services — 3.17 MB (baseline 3.17 MB) • 🔴 +1 BStores, services, APIs, and repositories
Status: 8 added / 8 removed Utilities & Hooks — 24 kB (baseline 24 kB) • ⚪ 0 BHelpers, composables, and utility bundles
Status: 7 added / 7 removed Vendor & Third-Party — 10.7 MB (baseline 10.7 MB) • ⚪ 0 BExternal libraries and shared vendor chunks
Other — 6.42 MB (baseline 6.42 MB) • 🟢 -192 BBundles that do not match a named category
Status: 30 added / 30 removed |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@index.html`:
- Around line 13-19: Update the dark-mode CSS to apply the background-color (and
optional color-scheme) to both html and body selectors instead of only body to
prevent white overscroll; modify the `@media` (prefers-color-scheme: dark) block
to set background-color on html, body and add color-scheme: dark to ensure
consistent initial paint and proper form controls styling across browsers.
| <style> | ||
| @media (prefers-color-scheme: dark) { | ||
| body { | ||
| background-color: #202020; | ||
| } | ||
| } | ||
| </style> |
There was a problem hiding this comment.
🧹 Nitpick | 🔵 Trivial
Apply the dark background to html, body (and consider color-scheme) to avoid white overscroll.
Setting only body can still show a light html background/overscroll flash on some browsers. A small tweak makes initial paint more robust.
♻️ Suggested tweak
`@media` (prefers-color-scheme: dark) {
- body {
- background-color: `#202020`;
- }
+ html {
+ color-scheme: dark;
+ background-color: `#202020`;
+ }
+ body {
+ background-color: `#202020`;
+ }
}📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| <style> | |
| @media (prefers-color-scheme: dark) { | |
| body { | |
| background-color: #202020; | |
| } | |
| } | |
| </style> | |
| <style> | |
| `@media` (prefers-color-scheme: dark) { | |
| html { | |
| color-scheme: dark; | |
| background-color: `#202020`; | |
| } | |
| body { | |
| background-color: `#202020`; | |
| } | |
| } | |
| </style> |
🤖 Prompt for AI Agents
In `@index.html` around lines 13 - 19, Update the dark-mode CSS to apply the
background-color (and optional color-scheme) to both html and body selectors
instead of only body to prevent white overscroll; modify the `@media`
(prefers-color-scheme: dark) block to set background-color on html, body and add
color-scheme: dark to ensure consistent initial paint and proper form controls
styling across browsers.
|
I see, maybe removing this color at all is a good idea. But do you have other patches, or is it everything? I no longer see the background image in comfy UI after applying the changes on my local setup, because you have removed it too @DrJKL |
Summary
Alternative to #8077
┆Issue is synchronized with this Notion page by Unito