Merge pull request #328 from yldio/fix/tooltip

fixing outline, padding and position of tooltip
This commit is contained in:
Alex Windett 2017-02-28 10:47:52 +00:00 committed by GitHub
commit 50971def23
2 changed files with 8 additions and 8 deletions

View File

@ -41,15 +41,15 @@ const StyledAvatarWrapper = styled.div`
${pseudoEl({
top: '50%',
right: remcalc(-10)
right: '0'
})}
}
`;
const StyledTooltipWrapper = styled.div`
position: absolute;
right: ${remcalc-18};
bottom: ${remcalc(-180)};
right: ${remcalc(-18)};
bottom: ${remcalc(-140)};
`;
const StyledName = styled.span`
@ -64,6 +64,7 @@ const StyledName = styled.span`
const EmptyButton = styled.button`
background: none;
border: none;
padding-right: ${remcalc(20)};
`;
const StyledAvatar = styled(Avatar)`

View File

@ -6,17 +6,16 @@ import React from 'react';
const ItemPadder = 9;
const WrapperPadder = 24;
const ulPadder = `${WrapperPadder - ItemPadder} 0`;
const StyledList = styled.ul`
position: relative;
background: #fff;
color: #646464;
background: ${colors.base.white};
color: ${colors.base.text};
display: inline-block;
font-family: sans-serif;
list-style-type: none;
margin: 0;
padding: ${remcalc(ulPadder)};
padding: 0;
min-width: ${remcalc(200)};
${props => props.styles}
@ -42,7 +41,7 @@ const StyledList = styled.ul`
&:after {
border-color: rgba(255, 255, 255, 0);
border-bottom-color: #fff;
border-bottom-color: ${colors.base.white};
border-width: ${remcalc(10)};
margin-left: ${remcalc(-10)};
}