File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed
Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 2626 - 修复全局配置` fetchSetting ` 可能会被局部配置意外修改的问题
2727 - 修复` handleSearchInfoFn ` 的参数包含多余空白键的问题
2828 - 修复为 table 提供 rowSelection.onChange 时,无法手动变更 table 的选中项的问题
29+ - 修复滚动条在无需显示的时候仍然持续显示的问题
2930- ** Icon** 修复 SvgIcon 缺少部分样式的问题
3031- ** Menu**
3132 - 修复路由映射模式下,单级菜单刷新不会激活
Original file line number Diff line number Diff line change 11@import ' ./pagination.less' ;
22@import ' ./input.less' ;
33@import ' ./btn.less' ;
4+ @import ' ./table.less' ;
45
56// TODO beta.11 fix
67.ant-col {
Original file line number Diff line number Diff line change 1+ @prefix-cls : ~ ' @{namespace} -basic-table' ;
2+
3+ // fix table unnecessary scrollbar
4+ .@{prefix-cls} {
5+ .ant-table-wrapper {
6+ .ant-spin-nested-loading {
7+ .ant-spin-container {
8+ .ant-table {
9+ .ant-table-content {
10+ .ant-table-scroll {
11+ .ant-table-hide-scrollbar {
12+ overflow-y : auto !important ;
13+ }
14+
15+ .ant-table-body {
16+ overflow : auto !important ;
17+ }
18+ }
19+
20+ .ant-table-fixed-right {
21+ .ant-table-body-outer {
22+ .ant-table-body-inner {
23+ overflow-y : auto !important ;
24+ }
25+ }
26+ }
27+ }
28+ }
29+ }
30+ }
31+ }
32+ }
You can’t perform that action at this time.
0 commit comments