CSS for height of autocomplete in custom filter panel

This commit is contained in:
2023-06-21 12:15:12 -05:00
parent 45063ac416
commit 7650d32ea5
2 changed files with 2 additions and 2 deletions

View File

@ -505,7 +505,7 @@ export function FilterCriteriaRow({id, index, tableMetaData, metaData, criteria,
renderOption={(props, option, state) => renderFieldOption(props, option, state)} renderOption={(props, option, state) => renderFieldOption(props, option, state)}
autoSelect={true} autoSelect={true}
autoHighlight={true} autoHighlight={true}
slotProps={{popper: {style: {padding: 0, width: "250px"}}}} slotProps={{popper: {className: "filterCriteriaRowColumnPopper", style: {padding: 0, width: "250px"}}}}
/> />
</Box> </Box>
<Box display="inline-block" width={200} className="operatorColumn"> <Box display="inline-block" width={200} className="operatorColumn">

View File

@ -434,7 +434,7 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
} }
/* taller list box */ /* taller list box */
.customFilterPanel .MuiAutocomplete-listbox .filterCriteriaRowColumnPopper .MuiAutocomplete-listbox
{ {
max-height: 60vh; max-height: 60vh;
} }