Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/pages/demos/text-fields/FilledInputAdornments.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const styles = theme => ({
margin: theme.spacing.unit,
},
textField: {
flexBasis: 280,
flexBasis: 200,
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const styles = theme => ({
margin: theme.spacing.unit,
},
textField: {
flexBasis: 280,
flexBasis: 200,
},
});

Expand Down
1 change: 1 addition & 0 deletions packages/material-ui/src/InputAdornment/InputAdornment.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const styles = {
/* Styles applied to the root element. */
root: {
display: 'flex',
height: '0.01em', // Fix IE 11 flexbox alignment. To remove at some point.
maxHeight: '2em',
alignItems: 'center',
},
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/InputBase/InputBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const styles = theme => {
display: 'block',
// Make the flex item shrink with Firefox
minWidth: 0,
flexGrow: 1,
width: '100%', // Fix IE11 width issue
'&::-webkit-input-placeholder': placeholder,
'&::-moz-placeholder': placeholder, // Firefox 19+
'&:-ms-input-placeholder': placeholder, // IE 11
Expand Down