Multi/Combobox: Use pointer cursor when not focused (#100878)
Combobox: Add pointer when not focused
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -54,7 +54,9 @@ export const getMultiComboboxStyles = (
|
||||
},
|
||||
'&:focus': {
|
||||
outline: 'none',
|
||||
cursor: 'text',
|
||||
},
|
||||
cursor: 'pointer',
|
||||
}),
|
||||
|
||||
pillWrapper: css({
|
||||
|
||||
Reference in New Issue
Block a user