fix(ui): 批量栏黑底还原 + 图片生成页排版对齐HTML + 视频卡去多余上传
- .bulk-bar 全局裸类被 admin-page.css 白底版盖掉 → 收窄到 .admin-app; 商品库/项目/资产库批量浮条恢复黑底 - 批量浮条显隐改绑「有无选中」(.show)而非编辑模式 → 退选即消失 - asset-factory 三卡:开始生成按钮挪回 factory-text 内(对齐HTML), 按钮紧跟描述、卡片高度回正;tag/desc/价格字号对齐HTML(10.5/13.5/10.5) - 全站内容区上内边距 48px→24px(对齐设计稿 #page-content),标题不再整体偏低 - 视频卡移除多余「上传」按钮(AI生成不需单卡上传,全局上传入口保留); video-card-head 顶端对齐改垂直居中 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
ad96acfacd
commit
b946a64409
@@ -706,8 +706,8 @@ export function ProjectsPage({ products, projects, loading = false, navigate, op
|
||||
<Pager page={curPage} total={filtered.length} pageSize={PROJ_PAGE_SIZE} onChange={setPage} />
|
||||
{filtered.length === 0 && <EmptyPanel title="当前筛选下没有项目" action="新建视频项目" onAction={() => navigate("projectWizard")} />}
|
||||
|
||||
{/* 批量管理栏 · 编辑态吸底浮动(显隐由 body.edit-mode 控)· 蓝本同 products-page */}
|
||||
<div className="bulk-bar" role="toolbar" aria-label="批量管理">
|
||||
{/* 批量管理栏 · 吸底浮动(显隐绑「有无选中」)· 蓝本同 products-page */}
|
||||
<div className={`bulk-bar${selected.size > 0 ? " show" : ""}`} role="toolbar" aria-label="批量管理">
|
||||
<span className="ct">已选 <b>{selected.size}</b> 项</span>
|
||||
<button className="clear-sel" type="button" disabled={selected.size === 0} onClick={() => setSelected(new Set())}>清空</button>
|
||||
<span className="sep" />
|
||||
|
||||
Reference in New Issue
Block a user