Skip to content

Commit

Permalink
Removed scrollbar on drawermenu from IE/EDGE (#2094)
Browse files Browse the repository at this point in the history
  • Loading branch information
allyoucanmap authored and offtherailz committed Aug 8, 2017
1 parent 13e1563 commit 3a9676d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/components/TOC/DefaultLayer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class DefaultLayer extends React.Component {
className="toc-zoomTool"
ref="target"
style={{"float": "right", cursor: "pointer"}}
glyph="zoom-in"
glyph="zoom-to"
onClick={(node) => this.props.onZoom(node.bbox.bounds, node.bbox.crs)}/>
);
}
Expand Down
3 changes: 3 additions & 0 deletions web/client/plugins/QueryPanel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ class QueryPanel extends React.Component {
right: this.props.querypanelEnabled ? 0 : 'auto',
width: '0',
overflow: 'visible'
},
content: {
overflowY: 'auto'
}
}}
>
Expand Down
3 changes: 3 additions & 0 deletions web/client/plugins/drawer/Menu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ class Menu extends React.Component {
right: this.props.show ? 0 : 'auto',
width: '0',
overflow: 'visible'
},
content: {
overflowY: 'auto'
}
}} sidebarClassName="nav-menu" onSetOpen={() => {
this.props.onToggle();
Expand Down

0 comments on commit 3a9676d

Please sign in to comment.