Skip to content

Commit

Permalink
chore(issue-details): Update json link style (#86103)
Browse files Browse the repository at this point in the history
  • Loading branch information
roggenkemper authored Feb 28, 2025
1 parent bf1410e commit 30d7f45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion static/app/views/issueDetails/streamline/eventTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {type CSSProperties, forwardRef, Fragment} from 'react';
import {css, type SerializedStyles, useTheme} from '@emotion/react';
import styled from '@emotion/styled';
import Color from 'color';

import {Button, LinkButton} from 'sentry/components/button';
import {useActionableItemsWithProguardErrors} from 'sentry/components/events/interfaces/crashContent/exception/useActionableItems';
Expand Down Expand Up @@ -272,10 +273,12 @@ const JsonLinkWrapper = styled('div')`
const JsonLink = styled(ExternalLink)`
color: ${p => p.theme.gray300};
text-decoration: underline;
text-decoration-color: ${p => p.theme.translucentGray200};
text-decoration-color: ${p => Color(p.theme.gray300).alpha(0.5).string()};
:hover {
color: ${p => p.theme.gray300};
text-decoration: underline;
text-decoration-color: ${p => p.theme.gray300};
}
`;

Expand Down

0 comments on commit 30d7f45

Please sign in to comment.