Skip to content

Commit

Permalink
Fixed z-index conflict in pmd
Browse files Browse the repository at this point in the history
  • Loading branch information
roccivic committed Oct 30, 2012
1 parent 234e8d6 commit a5d6d5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions js/pmd/move.js
Expand Up @@ -110,7 +110,7 @@ function MouseDown(e)
alert(" dx = " + dx + " dy = " +dy);
*/
cur_click.style.zIndex = 2;
cur_click.style.zIndex = 902;
}
if (layer_menu_cur_click) {
offsetx = e.pageX;
Expand Down Expand Up @@ -163,7 +163,7 @@ function MouseUp(e)
if (cur_click != null) {
document.getElementById("canvas").style.display = 'inline-block';
Re_load();
cur_click.style.zIndex = 1;
cur_click.style.zIndex = 901;
cur_click = null;
}
layer_menu_cur_click = 0;
Expand Down
2 changes: 1 addition & 1 deletion pmd_general.php
Expand Up @@ -234,7 +234,7 @@ class="M_butt last" target="_self">
echo ! isset($tab_pos[$t_n]) || $tab_pos[$t_n]["H"]
? "visible"
: "hidden"; ?>;
">
z-index: 901;">
<thead>
<tr>
<?php
Expand Down

0 comments on commit a5d6d5a

Please sign in to comment.