sakai ryota

Results 4 comments of sakai ryota

I tried to change css https://github.com/jackmoore/colorbox/blob/master/example1/colorbox.css#L7 into ``` #cboxOverlay{position:absolute; width:100%; height:10000px;} ``` then overlay is displayed beneath the content. (But, of course, if the height of page exceeded 10,000px, overlay...

I tried z-index but it doesn't work. Overlay is still placed over the content. Fixed position DOM may be placed over absolute position despite z-index or DOM order in this...

According to https://medium.com/@designblooz/ios-9-css-bugs-on-uiwebview-73b19bf9bae7 , I added -webkit-transform and tried this, then problem is fixed. (I didn't change z-index or position of #cboxOverlay.) ``` #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;...

After writing the issue, I noticed that this problem is not directly related this library. But it may still worth to support.