diff --git a/packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx b/packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx index 5c5dad1ae12..63c463178ae 100644 --- a/packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx +++ b/packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx @@ -144,7 +144,7 @@ const getStyles = stylesFactory((theme: GrafanaTheme2) => { border-radius: ${theme.shape.borderRadius()}; box-shadow: ${theme.shadows.z3}; background: ${theme.colors.background.primary}; - border: 1px solid ${theme.colors.border.medium}; + border: 1px solid ${theme.colors.border.weak}; .ColorPickerPopover__tab { width: 50%; diff --git a/public/app/features/dimensions/editors/ResourcePickerPopover.tsx b/public/app/features/dimensions/editors/ResourcePickerPopover.tsx index d3fffba9c48..4eaae4a512f 100644 --- a/public/app/features/dimensions/editors/ResourcePickerPopover.tsx +++ b/public/app/features/dimensions/editors/ResourcePickerPopover.tsx @@ -6,7 +6,7 @@ import React, { createRef, useState } from 'react'; import { GrafanaTheme2 } from '@grafana/data'; import { getBackendSrv } from '@grafana/runtime'; -import { Button, ButtonGroup, useStyles2 } from '@grafana/ui'; +import { Button, useStyles2 } from '@grafana/ui'; import { config } from 'app/core/config'; import { MediaType, PickerTabType, ResourceFolderName } from '../types'; @@ -98,12 +98,11 @@ export const ResourcePickerPopover = (props: Props) => {