Merge pull request #10935 from dhcodes/fix/map-drawer-issues

Fix map drawer issues
This commit is contained in:
Justin Richardsson
2016-09-30 17:53:26 -04:00
committed by GitHub
3 changed files with 2 additions and 4 deletions

View File

@ -62,10 +62,6 @@
}
}
.drawer-content {
overflow-y: auto;
}
.drawer-action-bar {
position: absolute;
top: 0;

View File

@ -21,6 +21,7 @@
}
.map-filter + .input-group-addon {
min-width: inherit;
width: 40px;
color: darkgreen;
background-color: #fff;

View File

@ -41,6 +41,7 @@ export class Header extends PureComponent {
handleKeyDown(e) {
if (e.keyCode === ESC) {
e.preventDefault();
this.props.clearFilter();
}
}