HFP-2433 Add CSS needed for Editor semi-fullscreen

semi-fullscreen
Frode Petterson 2018-11-23 15:47:26 +01:00
parent f2a9801879
commit 152dfc0fb2
1 changed files with 16 additions and 0 deletions

View File

@ -455,3 +455,19 @@ div.h5p-fullscreen {
.h5p-dialog-ok-button:active {
background: #eeffee;
}
/* This is loaded as part of Core and not Editor since this needs to be outside the editor iframe */
.h5peditor-semi-fullscreen {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 101;
}
iframe.h5peditor-semi-fullscreen {
background: #fff;
z-index: 100001;
}