[Backport staging] Remove a duplicate external link icon from `AnalyticsLearnMoreDialog` (#10927)

Co-authored-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
pull/28217/head
ElementRobot 2023-05-17 11:25:36 +02:00 committed by GitHub
parent 23f14cc229
commit 7cdf02b76a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 13 deletions

View File

@ -39,18 +39,6 @@ limitations under the License.
text-decoration: none;
}
.mx_AnalyticsPolicyLink {
display: inline-block;
mask-image: url("$(res)/img/external-link.svg");
background-color: $accent;
mask-repeat: no-repeat;
mask-size: contain;
width: 12px;
height: 12px;
margin-left: 3px;
vertical-align: middle;
}
.mx_AnalyticsLearnMore_bullets {
padding-left: 0px;
}

View File

@ -58,7 +58,6 @@ export const AnalyticsLearnMoreDialog: React.FC<IProps> = ({
return (
<ExternalLink href={privacyPolicyUrl} rel="norefferer noopener" target="_blank">
{sub}
<span className="mx_AnalyticsPolicyLink" />
</ExternalLink>
);
},