diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-07-19 22:36:41 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-07-19 22:36:41 +0800 |
commit | fc166dea26b55730a43876628c070f3ca0a3f2ed (patch) | |
tree | 8063e1efb3a08a5891438448a58a03b0f5aa2c09 /packages | |
parent | 6514c34ed8c2ead8fd64244fb5cab0c0f0e7295f (diff) | |
download | dexon-sol-tools-fc166dea26b55730a43876628c070f3ca0a3f2ed.tar dexon-sol-tools-fc166dea26b55730a43876628c070f3ca0a3f2ed.tar.gz dexon-sol-tools-fc166dea26b55730a43876628c070f3ca0a3f2ed.tar.bz2 dexon-sol-tools-fc166dea26b55730a43876628c070f3ca0a3f2ed.tar.lz dexon-sol-tools-fc166dea26b55730a43876628c070f3ca0a3f2ed.tar.xz dexon-sol-tools-fc166dea26b55730a43876628c070f3ca0a3f2ed.tar.zst dexon-sol-tools-fc166dea26b55730a43876628c070f3ca0a3f2ed.zip |
Add zIndex 1 to topbar and fix issue where no box-shadow present on /docs
Diffstat (limited to 'packages')
-rw-r--r-- | packages/website/ts/components/top_bar/top_bar.tsx | 7 | ||||
-rw-r--r-- | packages/website/ts/pages/wiki/wiki.tsx | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/packages/website/ts/components/top_bar/top_bar.tsx b/packages/website/ts/components/top_bar/top_bar.tsx index 63ea3475a..646d3fc94 100644 --- a/packages/website/ts/components/top_bar/top_bar.tsx +++ b/packages/website/ts/components/top_bar/top_bar.tsx @@ -59,6 +59,7 @@ const styles: Styles = { position: 'relative', top: 0, paddingBottom: 1, + zIndex: 1, }, bottomBar: { boxShadow: 'rgba(0, 0, 0, 0.187647) 0px 1px 3px', @@ -481,6 +482,9 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { private _isViewingPortal(): boolean { return _.includes(this.props.location.pathname, WebsitePaths.Portal); } + private _isViewingDocs(): boolean { + return _.includes(this.props.location.pathname, WebsitePaths.Docs); + } private _isViewingFAQ(): boolean { return _.includes(this.props.location.pathname, WebsitePaths.FAQ); } @@ -523,8 +527,9 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { private _shouldDisplayBottomBar(): boolean { return ( this._isViewingWiki() || - this._isViewing0xjsDocs() || this._isViewingFAQ() || + this._isViewingDocs() || + this._isViewing0xjsDocs() || this._isViewingSmartContractsDocs() || this._isViewingWeb3WrapperDocs() || this._isViewingSolCompilerDocs() || diff --git a/packages/website/ts/pages/wiki/wiki.tsx b/packages/website/ts/pages/wiki/wiki.tsx index 268ced773..55f532b11 100644 --- a/packages/website/ts/pages/wiki/wiki.tsx +++ b/packages/website/ts/pages/wiki/wiki.tsx @@ -95,7 +95,6 @@ export class Wiki extends React.Component<WikiProps, WikiState> { menuSubsectionsBySection={menuSubsectionsBySection} translate={this.props.translate} sidebarHeader={sidebarHeader} - style={{ zIndex: 1 }} /> {_.isUndefined(this.state.articlesBySection) ? ( <div className="col col-12" style={mainContainersStyle}> |