From e7d8d48407486c9becb4e0a74422d9ff81a14b40 Mon Sep 17 00:00:00 2001 From: Nathan Marrs Date: Wed, 14 Jun 2023 20:39:59 +0200 Subject: [PATCH] Canvas: Tweak inline editor border styling (#70099) --- public/app/plugins/panel/canvas/editor/inline/InlineEdit.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app/plugins/panel/canvas/editor/inline/InlineEdit.tsx b/public/app/plugins/panel/canvas/editor/inline/InlineEdit.tsx index 6f3294c2a10..7149ea5c14e 100644 --- a/public/app/plugins/panel/canvas/editor/inline/InlineEdit.tsx +++ b/public/app/plugins/panel/canvas/editor/inline/InlineEdit.tsx @@ -110,7 +110,7 @@ const getStyles = (theme: GrafanaTheme2) => ({ display: flex; flex-direction: column; background: ${theme.components.panel.background}; - border: 1px solid ${theme.colors.border.strong}; + border: 1px solid ${theme.colors.border.weak}; box-shadow: ${theme.shadows.z3}; z-index: 1000; opacity: 1; @@ -125,7 +125,7 @@ const getStyles = (theme: GrafanaTheme2) => ({ align-items: center; justify-content: center; background: ${theme.colors.background.canvas}; - border: 1px solid ${theme.colors.border.weak}; + border-bottom: 1px solid ${theme.colors.border.weak}; height: 40px; cursor: move; `,