mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 05:10:45 +00:00
CSS adjustments for multi-value filter
This commit is contained in:
@ -170,7 +170,7 @@ function FilterCriteriaRowValues({operatorOption, criteria, field, table, valueC
|
||||
{
|
||||
values = [];
|
||||
}
|
||||
return <Box display="flex" alignItems="flex-end">
|
||||
return <Box display="flex" alignItems="flex-end" className="multiValue">
|
||||
<Autocomplete
|
||||
renderInput={(params) => (<TextField {...params} variant="standard" label="Values" />)}
|
||||
options={[]}
|
||||
|
@ -491,6 +491,27 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
|
||||
color: lightgray;
|
||||
}
|
||||
|
||||
/* make the blue active-bottom-border not scroll in multi-value filter value panel */
|
||||
/* also prevent that box from getting stupidly large; scroll well. */
|
||||
.filterValuesColumn .multiValue .Mui-focused:after
|
||||
{
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
.filterValuesColumn .multiValue .Mui-focused .MuiAutocomplete-inputRoot:before
|
||||
{
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
.filterValuesColumn .multiValue .MuiAutocomplete-inputRoot.Mui-focused
|
||||
{
|
||||
border-bottom: 2px solid #0062FF;
|
||||
max-height: 150px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
|
||||
.DynamicSelectPopper ul
|
||||
{
|
||||
padding: 0;
|
||||
|
Reference in New Issue
Block a user