fix(scene-edit): 轨道标签竖排截断——加宽标签列 54→96px + 名字单行省略号
中文 actor 名(神秘剑客/客栈小二)被挤成竖排单字、与 +/✕ 按钮抢宽换行。 - 标签列宽 54→96px,引入 LABEL_W 常量统一 clip/标尺左偏移与 CSS 宽度 - 名字包进 .se-lname:flex:1 + nowrap + 省略号;按钮 flex:none 不参与换行
This commit is contained in:
@ -346,10 +346,11 @@ body.perform-mode .mode-switch { border-color:#2f7a60; }
|
||||
.se-tick span { font-size:9px; color:#6a6256; padding-left:3px; }
|
||||
.se-lanes { position:relative; min-width:100%; }
|
||||
.se-lane { position:relative; border-bottom:1px solid #211c15; }
|
||||
.se-lane-label { position:sticky; left:0; z-index:5; display:inline-flex; align-items:center; gap:3px;
|
||||
width:54px; height:100%; background:#1d1810; color:#d8cda0; font-size:11px; padding:0 3px;
|
||||
.se-lane-label { position:sticky; left:0; z-index:5; display:flex; align-items:center; gap:2px;
|
||||
width:96px; height:100%; background:#1d1810; color:#d8cda0; font-size:11px; padding:0 4px;
|
||||
border-right:1px solid #2a2419; box-sizing:border-box; }
|
||||
.se-lane-label button { background:none; border:none; color:#9a8f78; cursor:pointer; font-size:11px; padding:0 1px; }
|
||||
.se-lane-label .se-lname { flex:1; min-width:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
|
||||
.se-lane-label button { flex:none; background:none; border:none; color:#9a8f78; cursor:pointer; font-size:12px; padding:0 1px; line-height:1; }
|
||||
.se-lane-label .se-addclip:hover { color:#7ee3c8; }
|
||||
.se-lane-label .se-deltrack:hover { color:#e38f7e; }
|
||||
.se-clip { position:absolute; top:5px; height:24px; line-height:24px; padding:0 6px; border-radius:4px;
|
||||
|
||||
Reference in New Issue
Block a user