Skip to content

Commit

Permalink
[TableRow] fix row height in IE
Browse files Browse the repository at this point in the history
  • Loading branch information
zachguo committed Jan 6, 2016
1 parent 0dee01c commit 1059996
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 1059996

Please sign in to comment.