Fix position of back button on empty preview within campaigns

This commit is contained in:
Paul Clarke 2016-10-31 12:55:53 +13:00
parent 1395ee0c31
commit 4cc6cc3151
2 changed files with 14 additions and 2 deletions

View File

@ -15424,7 +15424,6 @@ div.grid-field__sort-field+.form__fieldgroup-item{
.preview__overlay{
text-align:center;
position:absolute;
top:0;
width:100%;
height:calc(100% - 53px);
@ -15955,6 +15954,20 @@ input.checkbox,input.radio,input[type=checkbox],input[type=radio]{
color:#d40404;
}
*,:after,:before{
box-sizing:border-box;
}
body,html{
width:100%;
height:100%;
margin:0;
padding:0;
display:-ms-flexbox;
display:-webkit-box;
display:flex;
}
@media (max-width:991px){
.CMSPageEditController.has-panel .cms-content-tools,.CMSPageSettingsController.has-panel .cms-content-tools{
display:none;

View File

@ -43,7 +43,6 @@
.preview__overlay {
text-align: center;
position: absolute;
top: 0;
width: 100%;
height: calc(100% - #{$toolbar-total-height});