Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #5363 from busykai/fix-5362
Browse files Browse the repository at this point in the history
 Fix #5362 (HTML menu z-index vs. bottom-panel)
  • Loading branch information
ingorichter committed Sep 28, 2013
2 parents 4013f1c + dd19801 commit 5246bbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/styles/brackets_variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
@z-index-brackets-selection-triangle: (@z-index-brackets-ui + 1);
@z-index-brackets-scroller-shadow: (@z-index-brackets-selection-triangle + 1);
@z-index-brackets-inline-editor-shadow: @z-index-brackets-ui;
@z-index-brackets-toolbar: @z-index-brackets-ui;
@z-index-brackets-toolbar: (@z-index-brackets-ui + 1);
@z-index-brackets-max: @z-index-brackets-toolbar;
@z-index-brackets-modalbar: @z-index-brackets-toolbar - 1;
@z-index-brackets-modalbar: (@z-index-brackets-toolbar - 1);

@z-index-brackets-sidebar-resizer: (@z-index-brackets-ui + 2);
@z-index-brackets-resizer-div: (@z-index-brackets-sidebar-resizer + 1);
Expand Down

0 comments on commit 5246bbf

Please sign in to comment.