Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 * IE6에서 메뉴가 아에 뜨지 않는 문제 수정
 * TODO : IE6/7에서 메뉴가 본문 영역 뒤로 가려지는 문제
  * IE8 beta 1에서는 정상작동. trident engine의 버그인 것으로 보인다.
  • Loading branch information
inureyes committed May 24, 2008
1 parent 3546996 commit 95be870
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
11 changes: 6 additions & 5 deletions style/admin/whitedream/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -297,23 +297,24 @@ textarea
display : none;
border : none;
}

#main-menu li:hover ul,
#main-menu li a:hover ul
#main-menu li a:hover {
z-index : 999 !important;
}
#main-menu li:hover ul
{
display : block !important;
width : 150px;
color : #222;
position : absolute;
z-index : 999;
z-index : 999 !important;
top : 33px;
left : 0;
border : solid 1px #CCC;
background-color : #EEE;
background-image : url("./image/bg_menu_selected.png");
background-repeat : no-repeat;
filter : alpha(opacity=90);
opacity :.90;
opacity : .90;
background-position : -80px -33px;
padding-bottom : 10px;
}
Expand Down
8 changes: 8 additions & 0 deletions style/admin/whitedream/basic.ie.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@
margin-left : 100px !important;
}

#main-menu table
{
position : absolute;
top : 0;
left : 0;
border-collapse : collapse;
}

#main-menu #menu-textcube
{
background-image : url("./image/img_header_textcube.gif") !important;
Expand Down

0 comments on commit 95be870

Please sign in to comment.