MOBILE-2765 page: Fix iframe embedding on page module

main
Pau Ferrer Ocaña 2018-12-03 12:35:39 +01:00
parent 26b7c3f377
commit 989123bc9e
2 changed files with 11 additions and 1 deletions

View File

@ -16,7 +16,7 @@
<div padding>
<core-format-text [component]="component" [componentId]="componentId" [text]="contents"></core-format-text>
<p class="addon-mod_page-timemodified" *ngIf="displayTimemodified && page && page.timemodified">
<p padding-bottom class="addon-mod_page-timemodified" *ngIf="displayTimemodified && page && page.timemodified">
{{ 'core.lastmodified' | translate}}: {{ page.timemodified * 1000 | coreFormatDate: "dfmediumdate" }}
</p>
</div>

View File

@ -0,0 +1,10 @@
addon-mod-page-index {
/* Solves iframe height */
.core-loading-content > div[padding] {
height: 100%;
}
core-format-text > .no-overflow {
display: inline;
}
}