Skip to content

Commit

Permalink
Avoid codemirror toolbar overlaps dropdown menu
Browse files Browse the repository at this point in the history
In small screens, codemirror toolbar was overlapping dropdown menu.
Toolbar's z-index is set to auto but it seems its value is 1020, so 1021
is enough to show the menu above.
  • Loading branch information
saraycp committed Dec 10, 2018
1 parent da89537 commit 69c057e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/api/app/assets/stylesheets/webui2/tabs-component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@ ul.nav.nav-tabs li.nav-item {
color: $white;
}
}

.dropdown-menu {
z-index: 1021;
}
}

0 comments on commit 69c057e

Please sign in to comment.