Canvas: Tweak inline editor border styling (#70099)

This commit is contained in:
Nathan Marrs 2023-06-14 20:39:59 +02:00 committed by GitHub
parent a40e589db7
commit e7d8d48407
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
`,