eoss-ui 0.7.51 → 0.7.52
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/lib/eoss-ui.common.js +1 -1
- package/lib/index.js +1 -1
- package/lib/theme-chalk/data-table.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/theme-chalk/lib/data-table.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/data-table.scss +9 -5
- package/src/index.js +1 -1
|
@@ -235,18 +235,22 @@
|
|
|
235
235
|
th {
|
|
236
236
|
background-color: #fff;
|
|
237
237
|
border-color: #cdd9e4;
|
|
238
|
-
&:not(.gutter) {
|
|
239
|
-
border-right-color: transparent;
|
|
240
|
-
}
|
|
241
238
|
}
|
|
242
239
|
}
|
|
243
|
-
.es-table {
|
|
240
|
+
.es-table:not(.el-table--border) {
|
|
244
241
|
border-color: transparent;
|
|
245
242
|
&::before {
|
|
246
243
|
background-color: #cdd9e4;
|
|
247
244
|
}
|
|
248
|
-
|
|
245
|
+
&::after {
|
|
246
|
+
background-color: transparent;
|
|
247
|
+
}
|
|
248
|
+
td,
|
|
249
|
+
th {
|
|
249
250
|
border-color: #cdd9e4;
|
|
251
|
+
&:not(.gutter) {
|
|
252
|
+
border-right-color: transparent;
|
|
253
|
+
}
|
|
250
254
|
}
|
|
251
255
|
.cell {
|
|
252
256
|
min-height: 35px;
|