mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
(core) Hide filter bar for inactive widget in mobile mode
Summary: The filter bar used to show in mobile mode while the widget was inactive as illustrated in this screen shot {F31970} This diff fixes it. {F31971} Test Plan: Manually tested. Reviewers: dsagal Reviewed By: dsagal Subscribers: dsagal Differential Revision: https://phab.getgrist.com/D2958
This commit is contained in:
parent
26356fe588
commit
e4633c293c
@ -350,7 +350,8 @@ const cssViewLeafInactive = styled('div', `
|
|||||||
}
|
}
|
||||||
& > .view_data_pane_container,
|
& > .view_data_pane_container,
|
||||||
& .viewsection_buttons,
|
& .viewsection_buttons,
|
||||||
& .grist-single-record__menu {
|
& .grist-single-record__menu,
|
||||||
|
& > .filter_bar {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -81,7 +81,7 @@ function makePlusButton(viewSectionRec: ViewSectionRec, popupControls: WeakMap<V
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const cssFilterBar = styled('div', `
|
const cssFilterBar = styled('div.filter_bar', `
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
|
Loading…
Reference in New Issue
Block a user