mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 13:20:43 +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 = [];
|
values = [];
|
||||||
}
|
}
|
||||||
return <Box display="flex" alignItems="flex-end">
|
return <Box display="flex" alignItems="flex-end" className="multiValue">
|
||||||
<Autocomplete
|
<Autocomplete
|
||||||
renderInput={(params) => (<TextField {...params} variant="standard" label="Values" />)}
|
renderInput={(params) => (<TextField {...params} variant="standard" label="Values" />)}
|
||||||
options={[]}
|
options={[]}
|
||||||
|
@ -491,6 +491,27 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
|
|||||||
color: lightgray;
|
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
|
.DynamicSelectPopper ul
|
||||||
{
|
{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
Reference in New Issue
Block a user