Skip to content

Commit af087e7

Browse files
tyaginidhiclaude
andcommitted
plan-alm: move PLAN_STATUS badge next to the "Generated" line
The Draft/Approved/In Execution/Completed status badge sat top-right of the topbar (justify-content:space-between). Move it inline next to the "Generated <timestamp>" sub-line via a new .topbar-sub-row flexbox, so the status reads alongside the plan metadata rather than floating in the corner. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent f27128f commit af087e7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

plugins/power-pages/skills/plan-alm/assets/alm-plan-template.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
.topbar-left{display:flex;align-items:center;gap:14px;}
3131
.logo{width:36px;height:36px;border-radius:var(--radius);background:linear-gradient(135deg,#0078d4,#5c2d91);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:800;color:#fff;font-family:var(--mono);}
3232
.topbar-title{font-size:16px;font-weight:700;color:var(--text-bright);}
33+
.topbar-sub-row{display:flex;align-items:center;gap:10px;margin-top:1px;}
3334
.topbar-sub{font-size:11px;color:var(--text-dim);margin-top:1px;}
3435
.plan-status{font-size:10px;font-weight:700;padding:3px 10px;border-radius:10px;text-transform:uppercase;letter-spacing:0.6px;background:var(--accent-bg);color:var(--accent);border:1px solid var(--accent-border);}
3536
.plan-status.draft{background:var(--high-bg);color:var(--high);border-color:var(--high-border);}
@@ -319,10 +320,12 @@
319320
<div class="logo">PP</div>
320321
<div>
321322
<div class="topbar-title">ALM Plan &mdash; __SITE_NAME__</div>
322-
<div class="topbar-sub">Generated __GENERATED_AT__</div>
323+
<div class="topbar-sub-row">
324+
<div class="topbar-sub">Generated __GENERATED_AT__</div>
325+
<span class="plan-status">__PLAN_STATUS__</span>
326+
</div>
323327
</div>
324328
</div>
325-
<span class="plan-status">__PLAN_STATUS__</span>
326329
</div>
327330

328331
<div class="layout">

0 commit comments

Comments
 (0)