centering tooltip pos

pull/460/head
slowbackspace 5 years ago
parent c3a7fbec25
commit 668c25c4b4

@ -132,6 +132,10 @@ const StyledLink = styled(Link)`
const StyledIcon = styled(Icon)`
cursor: pointer;
padding-right: 1px;
`;
const TooltipContainer = styled.div`
margin-left: 6px;
`;
@ -183,6 +187,7 @@ const AdvancedForm = (props: Props) => {
<InputLabelWrapper>
<Left>
<FormattedMessage {...l10nMessages.TR_GAS_LIMIT} />
<TooltipContainer>
<Tooltip
content={
<FormattedMessage
@ -196,7 +201,9 @@ const AdvancedForm = (props: Props) => {
</GreenSpan>
),
gasLimitTooltipValue: (
<GreenSpan>{gasLimitTooltipValue}</GreenSpan>
<GreenSpan>
{gasLimitTooltipValue}
</GreenSpan>
),
gasLimitTooltipCurrency,
}}
@ -205,7 +212,9 @@ const AdvancedForm = (props: Props) => {
maxWidth={410}
ctaLink="https://wiki.trezor.io/Ethereum_Wallet#Gas_limit"
ctaText={
<FormattedMessage {...l10nCommonMessages.TR_LEARN_MORE} />
<FormattedMessage
{...l10nCommonMessages.TR_LEARN_MORE}
/>
}
placement="top"
>
@ -215,6 +224,7 @@ const AdvancedForm = (props: Props) => {
size={12}
/>
</Tooltip>
</TooltipContainer>
</Left>
{showDefaultGasLimitButton && (
<Right>
@ -245,6 +255,7 @@ const AdvancedForm = (props: Props) => {
<InputLabelWrapper>
<Left>
<FormattedMessage {...l10nMessages.TR_GAS_PRICE} />
<TooltipContainer>
<Tooltip
content={
<FormattedMessage
@ -266,7 +277,9 @@ const AdvancedForm = (props: Props) => {
maxWidth={400}
ctaLink="https://wiki.trezor.io/Ethereum_Wallet#Gas_price"
ctaText={
<FormattedMessage {...l10nCommonMessages.TR_LEARN_MORE} />
<FormattedMessage
{...l10nCommonMessages.TR_LEARN_MORE}
/>
}
placement="top"
>
@ -276,6 +289,7 @@ const AdvancedForm = (props: Props) => {
size={12}
/>
</Tooltip>
</TooltipContainer>
</Left>
</InputLabelWrapper>
}
@ -290,9 +304,12 @@ const AdvancedForm = (props: Props) => {
<InputLabelWrapper>
<Left>
<FormattedMessage {...l10nMessages.TR_DATA} />
<TooltipContainer>
<Tooltip
content={
<FormattedMessage {...l10nMessages.TR_DATA_IS_USUALLY_USED} />
<FormattedMessage
{...l10nMessages.TR_DATA_IS_USUALLY_USED}
/>
}
placement="top"
>
@ -302,6 +319,7 @@ const AdvancedForm = (props: Props) => {
size={12}
/>
</Tooltip>
</TooltipContainer>
</Left>
</InputLabelWrapper>
}

@ -66,6 +66,10 @@ const AdvancedSettingsSendButtonWrapper = styled.div`
const StyledIcon = styled(Icon)`
cursor: pointer;
padding-right: 1px;
`;
const TooltipContainer = styled.div`
margin-left: 6px;
`;
@ -116,6 +120,7 @@ const AdvancedForm = (props: Props) => {
<InputLabelWrapper>
<Left>
<FormattedMessage {...l10nSendMessages.TR_FEE} />
<TooltipContainer>
<Tooltip
content={
<FormattedMessage {...l10nMessages.TR_XRP_TRANSFER_COST} />
@ -133,6 +138,7 @@ const AdvancedForm = (props: Props) => {
size={12}
/>
</Tooltip>
</TooltipContainer>
</Left>
</InputLabelWrapper>
}
@ -156,6 +162,7 @@ const AdvancedForm = (props: Props) => {
<InputLabelWrapper>
<Left>
<FormattedMessage {...l10nMessages.TR_XRP_DESTINATION_TAG} />
<TooltipContainer>
<Tooltip
content={
<FormattedMessage
@ -175,6 +182,7 @@ const AdvancedForm = (props: Props) => {
size={12}
/>
</Tooltip>
</TooltipContainer>
</Left>
</InputLabelWrapper>
}

@ -50,10 +50,13 @@ const AccountTitle = styled.div`
`;
const StyledIcon = styled(Icon)`
margin-left: 6px;
cursor: pointer;
`;
const TooltipContainer = styled.div`
margin-left: 6px;
`;
const StyledLink = styled(Link)`
font-size: ${FONT_SIZE.SMALL};
`;
@ -111,6 +114,7 @@ const AccountSummary = (props: Props) => {
<H5>
<FormattedMessage {...l10nSummaryMessages.TR_TOKENS} />
</H5>
<TooltipContainer>
<Tooltip
maxWidth={200}
placement="top"
@ -118,6 +122,7 @@ const AccountSummary = (props: Props) => {
>
<StyledIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={12} />
</Tooltip>
</TooltipContainer>
</TokensHeadingWrapper>
<AsyncSelectWrapper>
<AsyncSelect

Loading…
Cancel
Save