el-text-editor 0.0.88 → 0.0.89
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.
@@ -1315,7 +1315,8 @@ class ElTextEditorComponent {
|
|
1315
1315
|
cell.style.wordBreak = "break-all";
|
1316
1316
|
cell.style.whiteSpace = "normal";
|
1317
1317
|
cell.style.minWidth = `${minWidth}px`;
|
1318
|
-
cell.style.borderBottom =
|
1318
|
+
cell.style.borderBottom = "1px solid #d3d3d3";
|
1319
|
+
// cell.style.borderBottom = `2px solid ${this.themeModeClrVerticalLineColorForTable()}`;
|
1319
1320
|
// If it's the first row, make it a header cell
|
1320
1321
|
if (i === 0) {
|
1321
1322
|
cell.classList.add("header-cell");
|
@@ -1333,9 +1334,14 @@ class ElTextEditorComponent {
|
|
1333
1334
|
}
|
1334
1335
|
}
|
1335
1336
|
// Update existing rows' bottom border
|
1337
|
+
// for (let i = 0; i < this.selectedTable.rows.length; i++) {
|
1338
|
+
// this.selectedTable.rows[i].style.borderBottom =
|
1339
|
+
// this.themeModeClrVerticalLineForTable();
|
1340
|
+
// }
|
1336
1341
|
for (let i = 0; i < this.selectedTable.rows.length; i++) {
|
1337
|
-
this.selectedTable.rows[i].
|
1338
|
-
this.
|
1342
|
+
for (let j = 0; j < this.selectedTable.rows[i].cells.length; j++) {
|
1343
|
+
this.selectedTable.rows[i].cells[j].style.borderBottom = "1px solid #d3d3d3";
|
1344
|
+
}
|
1339
1345
|
}
|
1340
1346
|
}
|
1341
1347
|
}
|