[SSE] Fix Bug 55539

This commit is contained in:
ShimaginAndrey 2022-02-16 12:17:56 +03:00
parent 09eeb5ad4f
commit 3e6bf06d0e
2 changed files with 12 additions and 3 deletions

View file

@ -164,4 +164,13 @@
border-color: transparent;
}
}
}
.sheet-filter, .popover-filter {
ul li:first-child .list-button{
color: @text-normal;
&::after {
background: @background-menu-divider;
}
}
}

View file

@ -55,7 +55,7 @@ const FilterOptions = (props) => {
</List>
<List >
<ListButton color="black" className={props.isValid || is_all_checked ? 'disabled' : ''} onClick={HandleClearFilter}>{_t.textClearFilter}</ListButton>
<ListButton className={props.isValid || is_all_checked ? 'disabled' : ''} onClick={HandleClearFilter}>{_t.textClearFilter}</ListButton>
<ListButton color="red" onClick={() => props.onDeleteFilter()} id="btn-delete-filter">{_t.textDeleteFilter}</ListButton>
</List>
<List>
@ -72,10 +72,10 @@ const FilterOptions = (props) => {
const FilterView = (props) => {
return (
!Device.phone ?
<Popover id="picker-popover" className="popover__titled">
<Popover id="picker-popover" className="popover__titled popover-filter">
<FilterOptions style={{height: '410px'}} {...props}></FilterOptions>
</Popover> :
<Sheet className="picker__sheet" push>
<Sheet className="picker__sheet sheet-filter" push>
<FilterOptions {...props}></FilterOptions>
</Sheet>
)