diff options
| author | andy temp <andytemp@Kates-MBP.fios-router.home> | 2020-07-22 14:42:32 -0400 |
|---|---|---|
| committer | andy temp <andytemp@Kates-MBP.fios-router.home> | 2020-07-22 14:42:32 -0400 |
| commit | fd741cddf64fe1b068b7a1de5bc3840798afe75d (patch) | |
| tree | b44aafda60691a086c8a21c8ad120322453ac57a /src/client/views/collections/CollectionView.tsx | |
| parent | d995b381343c9f286c80b5c8268e3697c05c2566 (diff) | |
search results open and close as panel under bar
Diffstat (limited to 'src/client/views/collections/CollectionView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx index 43bfbc913..0178cc2e9 100644 --- a/src/client/views/collections/CollectionView.tsx +++ b/src/client/views/collections/CollectionView.tsx @@ -554,7 +554,7 @@ export class CollectionView extends Touchable<FieldViewProps & CollectionViewCus return (<div className={"collectionView"} onContextMenu={this.onContextMenu} style={{ pointerEvents: this.props.Document.isBackground ? "none" : undefined, boxShadow }}> {this.showIsTagged()} - <div className="collectionView-facetCont" style={{ width: `calc(100% - ${this.facetWidth()}px)` }}> + <div className="collectionView-facetCont" style={{ display: this.props.PanelPosition==="absolute"? "flex" : "", justifyContent: this.props.PanelPosition==="absolute"? "center" : "", width: `calc(100% - ${this.facetWidth()}px)` }}> {this.collectionViewType !== undefined ? this.SubView(this.collectionViewType, props) : (null)} </div> {this.lightbox(DocListCast(this.props.Document[this.props.fieldKey]).filter(d => d.type === DocumentType.IMG).map(d => |
