Prechádzať zdrojové kódy

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 rokov pred
rodič
commit
8ca65d89fd
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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>