@steedos-labs/plugin-workflow 3.0.68 → 3.0.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -363,14 +363,22 @@ tbody .color-priority-muted *{
363
363
  border-collapse: collapse;
364
364
  }
365
365
 
366
- .instance-form .td-childfield{
366
+ /* 限定到 td:避免模板里裸 <div class="td-childfield"> 被错误地加上方框/清空 padding */
367
+ .instance-form td.td-childfield{
367
368
  padding: 0 !important;
368
369
  border: none !important;
370
+ }
371
+
372
+ /* #627 关键约束:仅对"内嵌 antd-Table 子表"的 td 生效,
373
+ 将 td 约束到父列宽,让内层 .antd-Table-content 的 overflow:auto 接管水平滚动,
374
+ 避免子表撑宽外层被 .liquid-amis-container 的 overflow:hidden 裁掉。
375
+ 用 :has() 精准命中,不影响其它无子表的 td.td-childfield(如 "注:" 提示行)。 */
376
+ .instance-form td.td-childfield:has(.antd-Table){
369
377
  max-width: 0;
370
378
  overflow: hidden;
371
379
  }
372
380
 
373
- .steedos-instance-style-table .instance-form .td-childfield {
381
+ .steedos-instance-style-table .instance-form td.td-childfield {
374
382
  padding: 0 !important;
375
383
  border: 1px solid black !important;
376
384
  }