Skip to content

Commit

Permalink
Added word-break fallback for FF & IE in table cell (#962)
Browse files Browse the repository at this point in the history
  • Loading branch information
cchaos authored Jul 2, 2018
1 parent 01bee75 commit 6f457eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
**Bug fixes**

- Fixed disabled states of icon buttons ([#963](https://github.com/elastic/eui/pull/963))
- Added word-break fallback for FF & IE in table cell ([#962](https://github.com/elastic/eui/pull/962))

## [`1.0.1`](https://github.com/elastic/eui/tree/v1.0.1)

Expand Down
1 change: 1 addition & 0 deletions src/components/table/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
.euiTableCellContent__text {
min-width: 0;
text-overflow: ellipsis;
word-break: break-all; /* 1 */ // Fallback for FF and IE
word-break: break-word; /* 1 */
}

Expand Down

0 comments on commit 6f457eb

Please sign in to comment.