From f7892a41d176a0c8175280195e0806f6b907c919 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 6 Mar 2023 20:18:00 +0200 Subject: [PATCH] [v9.3.x] TimeSeries: Fix overflowing exemplar modals causing content shifts (#64252) TimeSeries: Fix overflowing exemplar modals causing content shifts (#64037) * fix overflowing exemplar modals causing content shifts (cherry picked from commit b9ebd5757a5bf8daa45c128a6e8acae01b00e80e) Co-authored-by: Galen Kistler <109082771+gtk-grafana@users.noreply.github.com> --- 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};