Skip to content

Commit

Permalink
Fix some z-index values
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuracj committed Dec 9, 2012
1 parent 41d20ee commit 941bb57
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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 = 401;
cur_click.style.zIndex = 2;
}
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 = 400;
cur_click.style.zIndex = 1;
cur_click = null;
}
layer_menu_cur_click = 0;
Expand Down
2 changes: 1 addition & 1 deletion pmd_general.php
Expand Up @@ -235,7 +235,7 @@ class="M_butt last" target="_self">
echo ! isset($tab_pos[$t_n]) || $tab_pos[$t_n]["H"]
? "visible"
: "hidden"; ?>;
z-index: 400;">
z-index: 1;">
<thead>
<tr>
<?php
Expand Down
8 changes: 4 additions & 4 deletions themes/pmahomme/css/pmd.css.php
Expand Up @@ -322,7 +322,7 @@
}

#layer_menu {
z-index: 402;
z-index: 100;
position: absolute;
left: 0;
background-color: #EAEEF0;
Expand All @@ -333,22 +333,22 @@
position: absolute;
left: 637px;
top: 224px;
z-index: 402;
z-index: 100;
}

#layer_new_relation {
position: absolute;
left: 636px;
top: 85px;
z-index: 402;
z-index: 100;
width: 153px;
}

#pmd_optionse {
position: absolute;
left: 636px;
top: 85px;
z-index: 402;
z-index: 100;
width: 153px;
}

Expand Down

0 comments on commit 941bb57

Please sign in to comment.