diff --git a/YLErpWeb/wwwroot/Style/Css/margin_template_v2Edit.css b/YLErpWeb/wwwroot/Style/Css/margin_template_v2Edit.css index 175ea26c..455069da 100644 --- a/YLErpWeb/wwwroot/Style/Css/margin_template_v2Edit.css +++ b/YLErpWeb/wwwroot/Style/Css/margin_template_v2Edit.css @@ -88,16 +88,18 @@ p { padding-bottom: unset; } -/*区间追保结构区块:单元格里多个数字输入与文字并列,全局 input[type=text] 152px 会把单元格内容挤成两行,调窄保证单行*/ +/*区间追保结构区块:单元格里多个数字输入与文字并列,全局 input[type=text] 152px 会把单元格内容挤成两行; + 64px 保证 100.00% 这类两位小数百分比完整显示且不换行*/ .spanBlk table input[type=text] { - width: 50px; + width: 64px; padding-left: 2px; padding-right: 2px; } -/*同区块表格单元格边距:bootstrap .table 默认 0.75rem,压缩使表格更紧凑*/ +/*同区块表格单元格边距:bootstrap .table 默认 0.75rem,压缩使表格更紧凑;垂直居中使公式文字与输入框对齐*/ .spanBlk table th, .spanBlk table td { padding: 2px 4px; + vertical-align: middle; } /*左栏基础信息列(tpl-base 标记在三个编辑页共用的左侧 col 上): @@ -111,3 +113,10 @@ p { .tpl-base textarea.text-box { width: calc(100% - 172px); } + +/*区块标题(新模板信息/选择模板规则/参数组N):左色条 + 加粗,与表单正文分层*/ +.border > p:first-child { + font-weight: bold; + border-left: 3px solid #e33333; + padding-left: 6px; +}