mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fix cut off icon (#28442)
This commit is contained in:
parent
e471a491a2
commit
d9d34ceedf
@ -183,7 +183,7 @@ class UnThemedLogRow extends PureComponent<Props, State> {
|
||||
<td className={cx({ [style.logsRowLevel]: !hasError })}>
|
||||
{hasError && (
|
||||
<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>
|
||||
)}
|
||||
</td>
|
||||
|
@ -114,12 +114,12 @@ export const getLogRowStyles = stylesFactory((theme: GrafanaTheme, logLevel?: Lo
|
||||
top: 1px;
|
||||
bottom: 1px;
|
||||
width: 3px;
|
||||
left: 4px;
|
||||
background-color: ${logColor};
|
||||
}
|
||||
`,
|
||||
logIconError: css`
|
||||
color: ${theme.palette.red};
|
||||
margin-left: -5px;
|
||||
`,
|
||||
logsRowToggleDetails: css`
|
||||
label: logs-row-toggle-details__level;
|
||||
|
Loading…
Reference in New Issue
Block a user