From 5a6471c01f4677ca401b1713fd87e2e9115932b1 Mon Sep 17 00:00:00 2001 From: Galen Kistler <109082771+gtk-grafana@users.noreply.github.com> Date: Mon, 6 Mar 2023 12:18:05 -0600 Subject: [PATCH] =?UTF-8?q?TimeSeries:=20Fix=20overflowing=20exemplar=20mo?= =?UTF-8?q?dals=20causing=20content=20shifts=20(#=E2=80=A6=20(#64254)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TimeSeries: Fix overflowing exemplar modals causing content shifts (#64037) * fix overflowing exemplar modals causing content shifts (cherry picked from commit b9ebd5757a5bf8daa45c128a6e8acae01b00e80e) --- 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};