Explorar el Código

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 hace 5 años
padre
commit
8ca65d89fd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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>