@hw-component/table 1.9.76 → 1.9.78
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.
- package/es/index.css +4 -6
- package/lib/index.css +4 -6
- package/package.json +1 -1
- package/src/components/index.less +8 -7
- package/src/index.less +6 -1
- package/src/pages/Table/index.tsx +1 -1
package/es/index.css
CHANGED
|
@@ -118,17 +118,15 @@
|
|
|
118
118
|
display: -ms-flexbox;
|
|
119
119
|
display: flex;
|
|
120
120
|
position: relative;
|
|
121
|
-
padding: 10px;
|
|
122
|
-
margin: -10px;
|
|
123
|
-
overflow-x: auto;
|
|
124
121
|
box-sizing: border-box;
|
|
122
|
+
overflow: auto;
|
|
123
|
+
margin: -10px 0px;
|
|
124
|
+
padding: 10px 0px;
|
|
125
|
+
margin-right: 12px;
|
|
125
126
|
}
|
|
126
127
|
.ant-hw-table-header-title-box .ant-hw-table-header-title-box-content {
|
|
127
128
|
white-space: nowrap;
|
|
128
129
|
}
|
|
129
|
-
.ant-hw-table-header-right-node {
|
|
130
|
-
padding-left: 12px;
|
|
131
|
-
}
|
|
132
130
|
.ant-hw-table-render-copy {
|
|
133
131
|
margin-bottom: 0 !important;
|
|
134
132
|
color: #1890ff !important;
|
package/lib/index.css
CHANGED
|
@@ -118,17 +118,15 @@
|
|
|
118
118
|
display: -ms-flexbox;
|
|
119
119
|
display: flex;
|
|
120
120
|
position: relative;
|
|
121
|
-
padding: 10px;
|
|
122
|
-
margin: -10px;
|
|
123
|
-
overflow-x: auto;
|
|
124
121
|
box-sizing: border-box;
|
|
122
|
+
overflow: auto;
|
|
123
|
+
margin: -10px 0px;
|
|
124
|
+
padding: 10px 0px;
|
|
125
|
+
margin-right: 12px;
|
|
125
126
|
}
|
|
126
127
|
.ant-hw-table-header-title-box .ant-hw-table-header-title-box-content {
|
|
127
128
|
white-space: nowrap;
|
|
128
129
|
}
|
|
129
|
-
.ant-hw-table-header-right-node {
|
|
130
|
-
padding-left: 12px;
|
|
131
|
-
}
|
|
132
130
|
.ant-hw-table-render-copy {
|
|
133
131
|
margin-bottom: 0 !important;
|
|
134
132
|
color: #1890ff !important;
|
package/package.json
CHANGED
|
@@ -106,24 +106,25 @@
|
|
|
106
106
|
color:#1890ff;
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
|
-
.@{ant-prefix}-hw-table-pointer-not-hover{
|
|
109
|
+
.@{ant-prefix}-hw-table-pointer-not-hover {
|
|
110
110
|
cursor: pointer;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
.@{ant-prefix}-hw-table-header-title-box{
|
|
113
|
+
.@{ant-prefix}-hw-table-header-title-box {
|
|
114
114
|
flex: 1;
|
|
115
115
|
display: flex;
|
|
116
116
|
position: relative;
|
|
117
|
-
padding: 10px;
|
|
118
|
-
margin: -10px;
|
|
119
|
-
overflow-x: auto;
|
|
120
117
|
box-sizing: border-box;
|
|
121
|
-
|
|
118
|
+
overflow: auto;
|
|
119
|
+
margin: -10px 0px;
|
|
120
|
+
padding: 10px 0px;
|
|
121
|
+
margin-right: 12px;
|
|
122
|
+
.@{ant-prefix}-hw-table-header-title-box-content {
|
|
122
123
|
white-space: nowrap;
|
|
123
124
|
}
|
|
124
125
|
}
|
|
125
126
|
.@{ant-prefix}-hw-table-header-right-node{
|
|
126
|
-
|
|
127
|
+
|
|
127
128
|
}
|
|
128
129
|
|
|
129
130
|
.@{ant-prefix}-hw-table-render-copy{
|
package/src/index.less
CHANGED