2021-04-01 07:15:23 -05:00
|
|
|
import { css } from '@emotion/css';
|
2022-04-22 08:33:13 -05:00
|
|
|
|
2022-11-03 13:15:55 -05:00
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
2021-03-24 05:43:27 -05:00
|
|
|
|
2022-11-03 13:15:55 -05:00
|
|
|
export function getModalStyles(theme: GrafanaTheme2) {
|
2021-03-24 05:43:27 -05:00
|
|
|
return {
|
|
|
|
myTable: css`
|
|
|
|
max-height: 204px;
|
|
|
|
overflow-y: auto;
|
|
|
|
margin-top: 11px;
|
|
|
|
margin-bottom: 28px;
|
2022-11-03 13:15:55 -05:00
|
|
|
border-radius: ${theme.shape.borderRadius(1)};
|
|
|
|
border: 1px solid ${theme.colors.action.hover};
|
|
|
|
background: ${theme.colors.background.primary};
|
|
|
|
color: ${theme.colors.text.secondary};
|
|
|
|
font-size: ${theme.typography.h6.fontSize};
|
2021-03-24 05:43:27 -05:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
thead {
|
|
|
|
color: #538ade;
|
2022-11-03 13:15:55 -05:00
|
|
|
font-size: ${theme.typography.bodySmall.fontSize};
|
2021-03-24 05:43:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 6px 13px;
|
2022-11-03 13:15:55 -05:00
|
|
|
height: ${theme.spacing(4)};
|
2021-03-24 05:43:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
tbody > tr:nth-child(odd) {
|
2022-11-03 13:15:55 -05:00
|
|
|
background: ${theme.colors.background.secondary};
|
2021-03-24 05:43:27 -05:00
|
|
|
}
|
|
|
|
`,
|
|
|
|
noteTextbox: css`
|
2022-11-03 13:15:55 -05:00
|
|
|
margin-bottom: ${theme.spacing(4)};
|
2021-03-24 05:43:27 -05:00
|
|
|
`,
|
|
|
|
textInfo: css`
|
2022-11-03 13:15:55 -05:00
|
|
|
color: ${theme.colors.text.secondary};
|
2021-03-24 05:43:27 -05:00
|
|
|
font-size: ${theme.typography.size.sm};
|
|
|
|
`,
|
|
|
|
dashboardSearch: css`
|
2022-11-03 13:15:55 -05:00
|
|
|
margin-top: ${theme.spacing(2)};
|
2021-03-24 05:43:27 -05:00
|
|
|
`,
|
|
|
|
modal: css`
|
|
|
|
width: 500px;
|
|
|
|
`,
|
|
|
|
modalText: css`
|
2022-11-03 13:15:55 -05:00
|
|
|
font-size: ${theme.typography.h4.fontSize};
|
|
|
|
color: ${theme.colors.text.primary};
|
|
|
|
margin-bottom: ${theme.spacing(4)};
|
|
|
|
padding-top: ${theme.spacing(2)};
|
2021-03-24 05:43:27 -05:00
|
|
|
`,
|
|
|
|
};
|
|
|
|
}
|