From b9ebd5757a5bf8daa45c128a6e8acae01b00e80e Mon Sep 17 00:00:00 2001 From: Galen Kistler <109082771+gtk-grafana@users.noreply.github.com> Date: Mon, 6 Mar 2023 11:34:37 -0600 Subject: [PATCH] TimeSeries: Fix overflowing exemplar modals causing content shifts (#64037) * fix overflowing exemplar modals causing content shifts --- public/app/plugins/panel/timeseries/plugins/ExemplarMarker.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/plugins/panel/timeseries/plugins/ExemplarMarker.tsx b/public/app/plugins/panel/timeseries/plugins/ExemplarMarker.tsx index c502eabf961..a7d588b452f 100644 --- a/public/app/plugins/panel/timeseries/plugins/ExemplarMarker.tsx +++ b/public/app/plugins/panel/timeseries/plugins/ExemplarMarker.tsx @@ -263,6 +263,8 @@ const getExemplarMarkerStyles = (theme: GrafanaTheme2) => { tooltip: css` background: none; padding: 0; + overflow-y: auto; + max-height: 95vh; `, header: css` background: ${headerBg};