diff --git a/packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx b/packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx index 249517eead8..9e3fb5f61a7 100644 --- a/packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx +++ b/packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx @@ -7,6 +7,7 @@ import { warnAboutColorPickerPropsDeprecation } from './warnAboutColorPickerProp import { css } from '@emotion/css'; import { GrafanaTheme2, colorManipulator } from '@grafana/data'; import { stylesFactory, withTheme2 } from '../../themes'; +import { FocusScope } from '@react-aria/focus'; export type ColorPickerChangeHandler = (color: string) => void; @@ -116,18 +117,20 @@ class UnThemedColorPickerPopover extends Reac const { theme } = this.props; const styles = getStyles(theme); return ( -
-
-
- Colors + +
+
+
+ Colors +
+
+ Custom +
+ {this.renderCustomPickerTabs()}
-
- Custom -
- {this.renderCustomPickerTabs()} +
{this.renderPicker()}
-
{this.renderPicker()}
-
+ ); } }