Fix cut off icon (#28442)
This commit is contained in:
@@ -183,7 +183,7 @@ class UnThemedLogRow extends PureComponent<Props, State> {
|
|||||||
<td className={cx({ [style.logsRowLevel]: !hasError })}>
|
<td className={cx({ [style.logsRowLevel]: !hasError })}>
|
||||||
{hasError && (
|
{hasError && (
|
||||||
<Tooltip content={`Error: ${errorMessage}`} placement="right" theme="error">
|
<Tooltip content={`Error: ${errorMessage}`} placement="right" theme="error">
|
||||||
<Icon className={style.logIconError} name="exclamation-triangle" size="sm" />
|
<Icon className={style.logIconError} name="exclamation-triangle" size="xs" />
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@@ -114,12 +114,12 @@ export const getLogRowStyles = stylesFactory((theme: GrafanaTheme, logLevel?: Lo
|
|||||||
top: 1px;
|
top: 1px;
|
||||||
bottom: 1px;
|
bottom: 1px;
|
||||||
width: 3px;
|
width: 3px;
|
||||||
|
left: 4px;
|
||||||
background-color: ${logColor};
|
background-color: ${logColor};
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
logIconError: css`
|
logIconError: css`
|
||||||
color: ${theme.palette.red};
|
color: ${theme.palette.red};
|
||||||
margin-left: -5px;
|
|
||||||
`,
|
`,
|
||||||
logsRowToggleDetails: css`
|
logsRowToggleDetails: css`
|
||||||
label: logs-row-toggle-details__level;
|
label: logs-row-toggle-details__level;
|
||||||
|
|||||||
Reference in New Issue
Block a user