Skip to content

Commit

Permalink
Theming backwards compatibility (#4438)
Browse files Browse the repository at this point in the history
# What this PR does

Closes #4437
  • Loading branch information
teodosii authored Jun 3, 2024
1 parent e417038 commit 270ceea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const getIntegrationFormStyles = (theme: GrafanaTheme2) => {
padding: 12px;
margin-bottom: 24px;
border: 1px solid ${theme.colors.border.weak};
border-radius: ${theme.shape.radius.default};
border-radius: 2px;
`,

extraFieldsRadio: css`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const getRotationsStyles = (theme: GrafanaTheme2) => {
border: 1px solid ${theme.colors.border.weak};
display: flex;
flex-direction: column;
border-radius: ${theme.shape.radius.default};
border-radius: 2px;
&--withNoBackgroundAndBorder {
background: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const getCommonServiceNowConfigStyles = (theme: GrafanaTheme2) => {
padding: 12px;
margin-bottom: 24px;
border: 1px solid ${theme.colors.border.weak};
border-radius: ${theme.shape.radius.default};
border-radius: 2px;
`,

tokenContainer: css`
Expand Down

0 comments on commit 270ceea

Please sign in to comment.