[SSE] Fix Bug 55539
This commit is contained in:
parent
09eeb5ad4f
commit
3e6bf06d0e
|
@ -164,4 +164,13 @@
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sheet-filter, .popover-filter {
|
||||||
|
ul li:first-child .list-button{
|
||||||
|
color: @text-normal;
|
||||||
|
&::after {
|
||||||
|
background: @background-menu-divider;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -55,7 +55,7 @@ const FilterOptions = (props) => {
|
||||||
</List>
|
</List>
|
||||||
|
|
||||||
<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>
|
<ListButton color="red" onClick={() => props.onDeleteFilter()} id="btn-delete-filter">{_t.textDeleteFilter}</ListButton>
|
||||||
</List>
|
</List>
|
||||||
<List>
|
<List>
|
||||||
|
@ -72,10 +72,10 @@ const FilterOptions = (props) => {
|
||||||
const FilterView = (props) => {
|
const FilterView = (props) => {
|
||||||
return (
|
return (
|
||||||
!Device.phone ?
|
!Device.phone ?
|
||||||
<Popover id="picker-popover" className="popover__titled">
|
<Popover id="picker-popover" className="popover__titled popover-filter">
|
||||||
<FilterOptions style={{height: '410px'}} {...props}></FilterOptions>
|
<FilterOptions style={{height: '410px'}} {...props}></FilterOptions>
|
||||||
</Popover> :
|
</Popover> :
|
||||||
<Sheet className="picker__sheet" push>
|
<Sheet className="picker__sheet sheet-filter" push>
|
||||||
<FilterOptions {...props}></FilterOptions>
|
<FilterOptions {...props}></FilterOptions>
|
||||||
</Sheet>
|
</Sheet>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue