bkui-vue 0.0.1-beta.137 → 0.0.1-beta.138
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/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/table/table.css +3 -1
- package/lib/table/table.less +3 -1
- package/lib/table/table.variable.css +3 -1
- package/package.json +1 -1
package/lib/table/table.css
CHANGED
@@ -1011,8 +1011,10 @@
|
|
1011
1011
|
.bk-table .bk-table-body table tbody tr td .cell {
|
1012
1012
|
display: block;
|
1013
1013
|
width: 100%;
|
1014
|
-
|
1014
|
+
height: 100%;
|
1015
|
+
line-height: calc(var(--row-height) - 1px);
|
1015
1016
|
box-sizing: border-box;
|
1017
|
+
align-items: center;
|
1016
1018
|
}
|
1017
1019
|
.bk-table .bk-table-head table tbody tr:hover td:not(.empty-cell),
|
1018
1020
|
.bk-table .bk-table-body table tbody tr:hover td:not(.empty-cell) {
|
package/lib/table/table.less
CHANGED
@@ -1113,8 +1113,10 @@
|
|
1113
1113
|
.bk-table .bk-table-body table tbody tr td .cell {
|
1114
1114
|
display: block;
|
1115
1115
|
width: 100%;
|
1116
|
-
|
1116
|
+
height: 100%;
|
1117
|
+
line-height: calc(var(--row-height) - 1px);
|
1117
1118
|
box-sizing: border-box;
|
1119
|
+
align-items: center;
|
1118
1120
|
}
|
1119
1121
|
.bk-table .bk-table-head table tbody tr:hover td:not(.empty-cell),
|
1120
1122
|
.bk-table .bk-table-body table tbody tr:hover td:not(.empty-cell) {
|