diff --git a/src/avatar.jsx b/src/avatar.jsx index b204dac6b93728..91856db00e11e2 100644 --- a/src/avatar.jsx +++ b/src/avatar.jsx @@ -39,37 +39,61 @@ let Avatar = React.createClass({ ...other, } = this.props; + const boxShadow = (style && style.boxShadow) ? style.boxShadow : '0 0 1px 0 rgba(0, 0, 0, 0.2) inset'; + const borderRadius = (style && style.borderRadius) ? style.borderRadius : '50%'; + let styles = { root: { - height: src ? size - 2 : size, - width: src ? size - 2 : size, + height: size, + width: size, userSelect: 'none', backgroundColor: backgroundColor, - borderRadius: '50%', - border: src ? 'solid 1px' : 'none', - borderColor: this.context.muiTheme.palette.borderColor, + boxShadow: src ? null : boxShadow, // Doesn't apply above an img + borderRadius: borderRadius, display: 'inline-block', + //Needed for img + position: 'relative', + //Needed for letter avatars textAlign: 'center', lineHeight: size + 'px', fontSize: size / 2 + 4, color: color, }, - - iconStyles: { - margin: 8, - }, }; let mergedRootStyles = this.mergeAndPrefix(styles.root, style); if (src) { - return ; + const styleImg = { + height: size, + width: size, + borderRadius: borderRadius, + }; + + const styleImgShadow = { + position: 'absolute', + top: 0, + left: 0, + width: '100%', + height: '100%', + boxShadow: boxShadow, + borderRadius: borderRadius, + }; + + return