Fix long datalinks to fit in panel options editor (#91203)

fix long datalinks to fit in panel options editor
This commit is contained in:
Victor Marin
2024-07-31 17:26:50 +03:00
committed by GitHub
parent 1897de68d4
commit 24d2fad921
@@ -88,6 +88,7 @@ const getDataLinkListItemStyles = (theme: GrafanaTheme2) => {
display: 'flex',
flexDirection: 'column',
flexGrow: 1,
maxWidth: '80%',
}),
errored: css({
color: theme.colors.error.text,
@@ -107,7 +108,6 @@ const getDataLinkListItemStyles = (theme: GrafanaTheme2) => {
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis',
maxWidth: '90%',
}),
dragRow: css({
position: 'relative',