Skip to content

Commit

Permalink
fix(rich-text-editor): add table layout property to table output (#3580)
Browse files Browse the repository at this point in the history
  • Loading branch information
engai authored Nov 19, 2018
1 parent 54a5288 commit 92a5956
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions ui/components/rich-text-editor/base/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,7 @@
}

table {
@include normal-wrap;
width: auto;

caption {
Expand Down
7 changes: 6 additions & 1 deletion ui/dependencies/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,12 @@
word-break: break-word;
}


// normal-wrap
@mixin normal-wrap {
overflow-wrap: normal;
word-wrap: normal;
word-break: normal;
}

// Clearfix
@mixin clearfix {
Expand Down

0 comments on commit 92a5956

Please sign in to comment.