[FIX] website: the media video create by the media editor is not display in firefox. change the css to display the video and add z-index to the div for edit mode

This commit is contained in:
Christophe Matthieu 2014-08-01 11:54:39 +02:00
parent 7efe3bb2d8
commit 9bf1203c33
2 changed files with 9 additions and 3 deletions

View File

@ -503,12 +503,15 @@ div.media_iframe_video {
div.media_iframe_video iframe {
width: 100%;
height: 100%;
position: absolute;
margin-left: -50%;
}
div.media_iframe_video div {
div.media_iframe_video .css_editable_mode_display {
position: absolute;
width: 100%;
height: 100%;
display: none;
z-index: 2;
}
/* Mobile view */

View File

@ -88,7 +88,7 @@ header
/* ----- EDITOR ----- */
.css_non_editable_mode_hidden
display: none
display: none !important
/* ----- BOOTSTRAP FIX ----- */
@ -413,11 +413,14 @@ div.media_iframe_video
iframe
width: 100%
height: 100%
div
position: absolute
margin-left: -50%
.css_editable_mode_display
position: absolute
width: 100%
height: 100%
display: none
z-index: 2
/* Mobile view */