commit
a8220cb894
|
@ -28,9 +28,7 @@
|
|||
</ion-item>
|
||||
</ion-card>
|
||||
|
||||
<div class="addon-mod-imscp-container">
|
||||
<core-iframe *ngIf="loaded" [src]="src" [showFullscreenOnToolbar]="true" [autoFullscreenOnRotate]="true"></core-iframe>
|
||||
</div>
|
||||
<core-iframe *ngIf="loaded" [src]="src" [showFullscreenOnToolbar]="true" [autoFullscreenOnRotate]="true"></core-iframe>
|
||||
</core-loading>
|
||||
|
||||
<core-navigation-bar collapsible-footer appearOnBottom *ngIf="loaded && navigationItems.length > 1" [items]="navigationItems"
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
.addon-mod_url-embedded-url {
|
||||
height: 100%;
|
||||
display: contents;
|
||||
}
|
||||
|
|
|
@ -147,9 +147,10 @@
|
|||
// If the selector contains :host it means it is targeting just the host
|
||||
// element so we can change it to look for host-context
|
||||
} @else if str-contains($selector, ":host") {
|
||||
$list: append($list, ":host-context(#{$addHostSelector})", comma);
|
||||
// If the selector does not contain host at all it is either a shadow
|
||||
// or normal element so append both the dir check and host-context
|
||||
$shadow-element: str-replace($selector, ":host", ":host-context(#{$addHostSelector})");
|
||||
$list: append($list, $shadow-element, comma);
|
||||
// If the selector does not contain host at all it is either a shadow
|
||||
// or normal element so append both the dir check and host-context
|
||||
} @else {
|
||||
$list: append($list, "#{$addHostSelector} #{$selector}", comma);
|
||||
$list: append($list, ":host-context(#{$addHostSelector}) #{$selector}", comma);
|
||||
|
|
Loading…
Reference in New Issue