diff --git a/packages/grafana-ui/src/components/Combobox/getComboboxStyles.ts b/packages/grafana-ui/src/components/Combobox/getComboboxStyles.ts index 6c788b15cbd..7bee7c19199 100644 --- a/packages/grafana-ui/src/components/Combobox/getComboboxStyles.ts +++ b/packages/grafana-ui/src/components/Combobox/getComboboxStyles.ts @@ -126,6 +126,12 @@ export const getComboboxStyles = (theme: GrafanaTheme2) => { '> div > div:last-child': { pointerEvents: 'none', }, + '& input': { + cursor: 'pointer', + }, + '& input:focus': { + cursor: 'text', + }, }), addaptToParent: css({ label: 'combobox-addapt-to-parent', diff --git a/packages/grafana-ui/src/components/Combobox/getMultiComboboxStyles.ts b/packages/grafana-ui/src/components/Combobox/getMultiComboboxStyles.ts index 3b330240995..da77745e779 100644 --- a/packages/grafana-ui/src/components/Combobox/getMultiComboboxStyles.ts +++ b/packages/grafana-ui/src/components/Combobox/getMultiComboboxStyles.ts @@ -54,7 +54,9 @@ export const getMultiComboboxStyles = ( }, '&:focus': { outline: 'none', + cursor: 'text', }, + cursor: 'pointer', }), pillWrapper: css({