king
2025-02-21 5639db443380ea345f870ae8ddb39a2a27648ee0
2025-02-21
2个文件已修改
32 ■■■■ 已修改文件
src/tabviews/custom/components/editor/braft-editor/index.scss 28 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/custom/components/share/braftContent/index.scss 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/custom/components/editor/braft-editor/index.scss
@@ -26,14 +26,26 @@
      background: #ffffff;
    }
  }
  .braft-content table.no-border {
    td, th {
      border: none;
  .braft-content {
    table.no-border {
      td, th {
        border: none;
      }
    }
  }
  .braft-content table.align-center {
    td, th {
      text-align: center;
    table.align-center {
      td, th {
        text-align: center;
      }
    }
    table.deep-border {
      td, th {
        border-color: rgba(0, 0, 0, 0.85);
      }
    }
    table.word-break {
      td, th {
        word-break: break-all;
      }
    }
  }
}
@@ -49,7 +61,7 @@
}
.custom-braft-editor-box.no-border {
  .braft-content {
    table:not(.border) {
    table:not(.border):not(.deep-border) {
      td, th {
        border: none!important;
      }
src/tabviews/custom/components/share/braftContent/index.scss
@@ -32,12 +32,14 @@
    border-collapse: collapse;
    border-spacing: 0;
    margin: 10px 0px;
    --table-font-size: 16px;
    tr:first-child {
      background-color: #f0f0f0;
    }
    td, th {
      padding: 5px 10px;
      font-size: 16px;
      font-size: var(--table-font-size, 16px);
      border: 1px solid #ddd;
    }
  }