Skip to content

Commit

Permalink
Merge pull request #2812 from zachguo/master
Browse files Browse the repository at this point in the history
[TableRow] fix row height in IE
  • Loading branch information
oliviertassinari committed Jan 7, 2016
2 parents 0d1dab9 + 1059996 commit 6986325
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/styles/getMuiTheme.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ export default function getMuiTheme(baseTheme, muiTheme) {
selectedColor: palette.borderColor,
textColor: palette.textColor,
borderColor: palette.borderColor,
height: 48,
},
tableRowColumn: {
height: 48,
Expand Down
5 changes: 3 additions & 2 deletions src/table/table-row.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,9 @@ const TableRow = React.createClass({

let styles = {
root: {
borderBottom: '1px solid ' + this.getTheme().borderColor,
color: this.getTheme().textColor,
borderBottom: '1px solid ' + theme.borderColor,
color: theme.textColor,
height: theme.height,
},
cell: {
backgroundColor: cellBgColor,
Expand Down

0 comments on commit 6986325

Please sign in to comment.