diff --git a/packages/grafana-ui/src/components/DataLinks/DataLinkInput.tsx b/packages/grafana-ui/src/components/DataLinks/DataLinkInput.tsx index 387358c2990..011da4b4d2e 100644 --- a/packages/grafana-ui/src/components/DataLinks/DataLinkInput.tsx +++ b/packages/grafana-ui/src/components/DataLinks/DataLinkInput.tsx @@ -55,6 +55,9 @@ const getStyles = (theme: GrafanaTheme2) => ({ color: ${theme.colors.primary.text}; } `, + suggestionsWrapper: css` + box-shadow: ${theme.shadows.z2}; + `, // Wrapper with child selector needed. // When classnames are applied to the same element as the wrapper, it causes the suggestions to stop working wrapperOverrides: css` @@ -155,7 +158,7 @@ export const DataLinkInput: React.FC = memo( = memo( > {({ ref, style, placement }) => { return ( -
+
{ wrapper: css` background: ${theme.colors.background.primary}; width: 250px; - box-shadow: 0 5px 10px 0 ${theme.shadows.z1}; `, item: css` background: none; diff --git a/packages/grafana-ui/src/components/DataLinks/DataLinksInlineEditor/DataLinksInlineEditor.tsx b/packages/grafana-ui/src/components/DataLinks/DataLinksInlineEditor/DataLinksInlineEditor.tsx index fa616844cb7..c4e56940a23 100644 --- a/packages/grafana-ui/src/components/DataLinks/DataLinksInlineEditor/DataLinksInlineEditor.tsx +++ b/packages/grafana-ui/src/components/DataLinks/DataLinksInlineEditor/DataLinksInlineEditor.tsx @@ -89,6 +89,7 @@ export const DataLinksInlineEditor: React.FC = ({ { onDataLinkCancel(editIndex); }}