mishrsud / mvc-mini-profiler

Automatically exported from code.google.com/p/mvc-mini-profiler
0 stars 0 forks source link

Black background covering the SQL detail window in Chrome #26

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
For some reason on Chrome, the transparent black profiler-queries-bg div is 
picking up a z-index: 2147483642 attribute (z-index:-1 i guess?), causing it to 
cover everything.

Original issue reported on code.google.com by scott.stafford on 17 Jun 2011 at 6:05

GoogleCodeExporter commented 8 years ago
Update: I understand now where that z-index is coming from (properly).  I'm 
causing this bug locally because I had set the z-index on the button:

.profiler-results
{
    z-index:100002;
}

And for reasons I don't quite understand (yet) that messes up the rest of it.  
I will try to fix it.  However, I need a way to make the button higher in 
z-index without breaking everything, to float over some banners and such that 
are in the top corners.

Original comment by scott.stafford on 17 Jun 2011 at 6:20

GoogleCodeExporter commented 8 years ago
The z-indexes on all the displayed containers are already pretty high:

 .profiler-button = 2147483640
 .profiler-popup = 2147483641
 .profiler-queries-bg = 2147483642
 .profiler-queries = 2147483643

Is there any reason to set a z-index on the .profiler-results?

Original comment by jarrod.m.dixon on 21 Jun 2011 at 8:34

GoogleCodeExporter commented 8 years ago

Original comment by jarrod.m.dixon on 21 Jun 2011 at 8:34

GoogleCodeExporter commented 8 years ago
Issue rescinded, please close.  I think I had something else messing me up... 
ya, it floats nicely.

Original comment by scott.stafford on 22 Jun 2011 at 4:12

GoogleCodeExporter commented 8 years ago
Cool!

Original comment by jarrod.m.dixon on 22 Jun 2011 at 4:25