fix(table): wrong bg-color in fullscreen mode

修复浅色主题下的table在全屏状态时背景颜色不正确的问题
This commit is contained in:
无木
2021-08-10 22:34:41 +08:00
parent 019555be0c
commit 2052eb5a65
3 changed files with 6 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
- 修复`CellFormat`无法使用`Map`类型数据的问题 - 修复`CellFormat`无法使用`Map`类型数据的问题
- 修复可编辑单元格未能正确显示`0`值的问题 - 修复可编辑单元格未能正确显示`0`值的问题
- 修复 selection-change 事件在取消勾选时未能正确触发的问题 - 修复 selection-change 事件在取消勾选时未能正确触发的问题
- 修复浅色主题下的全屏状态背景颜色不正确的问题
- **Qrcode** 修复二维码组件在创建时未能及时绘制的问题 - **Qrcode** 修复二维码组件在创建时未能及时绘制的问题
## 2.7.0(2021-08-03) ## 2.7.0(2021-08-03)

View File

@@ -21,6 +21,10 @@ html[data-theme='light'] {
background-color: #fffbe6; background-color: #fffbe6;
border: 1px solid #ffe58f; border: 1px solid #ffe58f;
} }
:not(:root):fullscreen::backdrop {
background-color: @layout-body-background !important;
}
} }
[data-theme='dark'] { [data-theme='dark'] {

View File

@@ -41,6 +41,7 @@
useSearchForm: true, useSearchForm: true,
formConfig: getFormConfig(), formConfig: getFormConfig(),
showTableSetting: true, showTableSetting: true,
tableSetting: { fullScreen: true },
showIndexColumn: false, showIndexColumn: false,
rowKey: 'id', rowKey: 'id',
}); });