Skip to content

Commit

Permalink
Dropdown menu should be higher than handle
Browse files Browse the repository at this point in the history
If the dropdown menu is open over the pane resize handle, the menu will unexpectedly close when the mouse reaches the handle.

This fix bumps the z-index back down (a change was made that increased the `z-index` of `.handle`) below that of  `.dropdown-menu`.
  • Loading branch information
k-fish authored and Gaurav0 committed Feb 24, 2017
1 parent e9d1388 commit cd21a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/styles/_output-pane.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
background-color: transparent;
position: relative;
left: -2px;
z-index: 1000;
z-index: 999;

@media (min-width: $screen-md-min) {
height: 100%;
Expand Down

0 comments on commit cd21a54

Please sign in to comment.