소스 검색

overlay needs to be on top

There was an issue with some compnents not 'dimming' with the rest of the
screen. The issue was the components taking whatever z height they got and
being rendered 'above' the `dim_overlay` div.

Fixed by specifying `z-index:100` for the `dim_overlay` div.
clementinecomputing 5 년 전
부모
커밋
8ca65d89fd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      busunit/DIUv2/html/index-ORG.html

+ 1 - 1
busunit/DIUv2/html/index-ORG.html

@@ -31,7 +31,7 @@
   </head>
 
   <body id='body'>
-    <div id='dim_overlay'></div>
+    <div id='dim_overlay' style='z-index:100;'></div>
 
     <div id='ui_test'>X</div>