Theming backwards compatibility (#4438)
# What this PR does Closes https://github.com/grafana/oncall/issues/4437
This commit is contained in:
parent
e4170389dc
commit
270ceeaeaf
3 changed files with 3 additions and 3 deletions
|
|
@ -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`
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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`
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue