Compare commits

...
Author SHA1 Message Date
施工员andmultica-agent 3e8666e3e1 fix: align heaven page top-bar right-side icons with other pages
The shared shell hides .app-header .overview-strip (the market tape) for
heavenView, which is intentional (the heaven page has its own dark header).
But hiding the tape removes the flex-grow element that normally pushes
.header-actions to the right edge, so on the heaven page the top-bar icon
group was left-shifted by hundreds of pixels (rightGap 792px at 1920 vs 20px
on reference pages).

Give the heaven .header-actions margin-left:auto in the shared shell so the
icon group stays flush right when the tape is gone, matching every other
page. The heaven page body, business logic, data, API and frozen content are
untouched.

Also bump the shell stylesheet cache version.

Co-authored-by: multica-agent <github@multica.ai>
2026-08-22 18:20:25 +08:00
3 changed files with 8 additions and 4 deletions
+3 -3
View File
@@ -372,7 +372,7 @@
"css_layers": [
"/shared/tokens.css?v=20260820-3",
"/shared/base.css?v=20260806-1",
"/shared/shell.css?v=20260820-8",
"/shared/shell.css?v=20260822-1",
"/shared/auth.css?v=20260820-5",
"/shared/components/controls.css?v=20260820-2",
"/shared/components/navigation.css?v=20260820-1",
@@ -451,8 +451,8 @@
},
{
"path": "frontend/shared/shell.css",
"bytes": 63550,
"lines": 3757
"bytes": 63640,
"lines": 3761
},
{
"path": "backend/features/heaven/engine.py",
+1 -1
View File
@@ -19,7 +19,7 @@
</script>
<link rel="stylesheet" href="/shared/tokens.css?v=20260820-3">
<link rel="stylesheet" href="/shared/base.css?v=20260806-1">
<link rel="stylesheet" href="/shared/shell.css?v=20260820-8">
<link rel="stylesheet" href="/shared/shell.css?v=20260822-1">
<link rel="stylesheet" href="/shared/auth.css?v=20260820-5">
<link rel="stylesheet" href="/shared/components/controls.css?v=20260820-2">
<link rel="stylesheet" href="/shared/components/navigation.css?v=20260820-1">
+4
View File
@@ -3755,3 +3755,7 @@ body.mobile-shell[data-active-view="heavenView"] .app-header .overview-strip[dat
overflow: hidden;
}
body[data-active-view="heavenView"] .app-header .header-actions {
margin-left: auto;
}