forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
761 B
38 lines
761 B
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { css } from '@emotion/css';
|
|
|
|
export const getAlertTableStyles = (theme: GrafanaTheme2) => ({
|
|
table: css`
|
|
width: 100%;
|
|
border-radius: ${theme.shape.borderRadius()};
|
|
border: solid 1px ${theme.colors.border.weak};
|
|
background-color: ${theme.colors.background.secondary};
|
|
|
|
th {
|
|
padding: ${theme.spacing(1)};
|
|
}
|
|
|
|
td {
|
|
padding: 0 ${theme.spacing(1)};
|
|
}
|
|
|
|
tr {
|
|
height: 38px;
|
|
}
|
|
`,
|
|
evenRow: css`
|
|
background-color: ${theme.colors.background.primary};
|
|
`,
|
|
colExpand: css`
|
|
width: 36px;
|
|
`,
|
|
actionsCell: css`
|
|
text-align: right;
|
|
width: 1%;
|
|
white-space: nowrap;
|
|
|
|
& > * + * {
|
|
margin-left: ${theme.spacing(1)};
|
|
}
|
|
`,
|
|
});
|
|
|