diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ab798b2468816b1556d9c4a1c8595a7daee61f4..1898c6bb8bf8d7991ac4c3c928f275d031aaf745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ - 面板按钮显示启用逻辑在成员的基础上考虑界面行为权限的显示与禁用,权限的优先级最高。 - 卡片视图移除可收缩功能 - 时间选择器类型为DATEPICKEREX_NOTIME时,不展示图标 +- 表格锁定列后的合计部分滚动到左右侧不出现阴影 +- 调整表格合计文字上下的间距 ### Fixed diff --git a/src/control/grid/grid/grid.scss b/src/control/grid/grid/grid.scss index 84af8cf6aa6c056548cbb4a09c346a01144d1746..5c67d2d61b76e6f4e3a8d1441ff69ee738595583 100644 --- a/src/control/grid/grid/grid.scss +++ b/src/control/grid/grid/grid.scss @@ -25,7 +25,7 @@ $control-grid-page: (text-color: getCssVar(control-grid, text-color), ); $control-grid-footer: (text-color: getCssVar(color, text, 2), - bg-color: getCssVar(color, fill, 1), + bg-color: rgba(#{getCssVar(grey, 1)}, 1), font-size: getCssVar(font-size, regular), font-weight: getCssVar(font-weight, bold), ); @@ -215,6 +215,12 @@ $control-grid-footer: (text-color: getCssVar(color, text, 2), font-weight: getCssVar(control-grid, footer, font-weight); color: getCssVar(control-grid, footer, text-color); background-color: getCssVar(control-grid, footer, bg-color); + &:first-child { + > div { + display: inline; + vertical-align: 4px; + } + } } }