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