Skip to content

Commit 51e9b09

Browse files
committed
ref(theme): replace backgroundSecondary with background.secondary
1 parent 88bb026 commit 51e9b09

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

static/app/components/events/autofix/v2/artifactCards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ const CodingAgentStatusTag = styled('span')<{
915915

916916
const CodingAgentResultItem = styled('div')`
917917
padding: ${p => p.theme.space.md};
918-
background-color: ${p => p.theme.backgroundSecondary};
918+
background-color: ${p => p.theme.tokens.background.secondary};
919919
border-radius: ${p => p.theme.radius.sm};
920920
`;
921921

static/app/views/issueList/pages/topIssuesDrawer.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ const TagPill = styled('span')`
878878
padding: ${p => p.theme.space.xs} ${p => p.theme.space.md};
879879
font-size: ${p => p.theme.fontSize.xs};
880880
color: ${p => p.theme.tokens.content.primary};
881-
background: ${p => p.theme.backgroundSecondary};
881+
background: ${p => p.theme.tokens.background.secondary};
882882
border: 1px solid ${p => p.theme.tokens.border.primary};
883883
border-radius: 20px;
884884
`;
@@ -893,7 +893,7 @@ const TagsTableHeader = styled('div')`
893893
grid-template-columns: subgrid;
894894
gap: ${p => p.theme.space.xl};
895895
padding: ${p => p.theme.space.md} ${p => p.theme.space.lg};
896-
background: ${p => p.theme.backgroundSecondary};
896+
background: ${p => p.theme.tokens.background.secondary};
897897
border-bottom: 1px solid ${p => p.theme.tokens.border.primary};
898898
`;
899899

@@ -907,7 +907,7 @@ const DenseTagBar = styled('div')`
907907
height: 6px;
908908
border-radius: 3px;
909909
overflow: hidden;
910-
background: ${p => p.theme.backgroundSecondary};
910+
background: ${p => p.theme.tokens.background.secondary};
911911
margin-bottom: ${p => p.theme.space.sm};
912912
`;
913913

@@ -922,7 +922,7 @@ const TagMiniBar = styled('div')`
922922
height: 6px;
923923
border-radius: 3px;
924924
overflow: hidden;
925-
background: ${p => p.theme.backgroundSecondary};
925+
background: ${p => p.theme.tokens.background.secondary};
926926
box-shadow: inset 0 0 0 1px ${p => p.theme.tokens.border.secondary};
927927
`;
928928

@@ -966,6 +966,6 @@ const TagRow = styled('div')`
966966
}
967967
968968
&:hover {
969-
background: ${p => p.theme.backgroundSecondary};
969+
background: ${p => p.theme.tokens.background.secondary};
970970
}
971971
`;

static/app/views/settings/components/dataScrubbing/rules.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const List = styled('ul')<{
8080
p.isDisabled &&
8181
css`
8282
color: ${p.theme.colors.gray200};
83-
background: ${p.theme.backgroundSecondary};
83+
background: ${p.theme.tokens.background.secondary};
8484
`}
8585
`;
8686

@@ -92,7 +92,7 @@ const ListItem = styled('li')`
9292
padding: ${space(1)} ${space(2)};
9393
border-bottom: 1px solid ${p => p.theme.tokens.border.primary};
9494
&:hover {
95-
background-color: ${p => p.theme.backgroundSecondary};
95+
background-color: ${p => p.theme.tokens.background.secondary};
9696
}
9797
&:last-child {
9898
border-bottom: 0;

static/gsAdmin/globalStyles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const styles = (theme: Theme) => css`
1515
}
1616
1717
.loading .loading-indicator {
18-
border-color: ${theme.backgroundSecondary};
18+
border-color: ${theme.tokens.background.secondary};
1919
border-left-color: ${theme.purple300};
2020
}
2121

0 commit comments

Comments
 (0)