mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-04 15:52:40 +00:00
Add url bar layout
This commit is contained in:
parent
79a4017386
commit
fd297a6f5f
@ -13,12 +13,18 @@
|
|||||||
[ngClass]="{'deploy-blur': deploying}">
|
[ngClass]="{'deploy-blur': deploying}">
|
||||||
<app-web *ngIf="!iframeUrl"></app-web>
|
<app-web *ngIf="!iframeUrl"></app-web>
|
||||||
<div *ngIf="iframeUrl" class="iframe-container">
|
<div *ngIf="iframeUrl" class="iframe-container">
|
||||||
<iframe class="iframe"
|
<div class="urlbar-container">
|
||||||
#webiframe
|
<button class="refresh">R</button>
|
||||||
scrolling="yes"
|
<input type="text" class="urlbar" value="{{iframeUrl}}">
|
||||||
frameborder="0"
|
<button class="go">G</button>
|
||||||
[src]="iframeUrl | safe">
|
</div>
|
||||||
</iframe>
|
<iframe class="iframe"
|
||||||
|
#webiframe
|
||||||
|
scrolling="yes"
|
||||||
|
frameborder="0"
|
||||||
|
(load)="iframeLoad()"
|
||||||
|
[src]="iframeUrl | safe">
|
||||||
|
</iframe>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tfw-ide">
|
<div class="tfw-ide">
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
.tfw-web {
|
.tfw-web {
|
||||||
.iframe-container {
|
.iframe-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@include set-component-size($layouts-key, 'web');
|
@include set-component-size($layouts-key, 'web');
|
||||||
}
|
}
|
||||||
@ -18,6 +19,14 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.urlbar-container {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.urlbar {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user