Skip to content

Commit

Permalink
Extension styling (#3222)
Browse files Browse the repository at this point in the history
* installation styling

* Resource update

* switch h4s to divs
  • Loading branch information
Allison Gruninger committed Sep 25, 2018
1 parent 3e4c2aa commit bf7cc1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

<ng-container *ngIf="!installing && !allInstalled">
<h2>{{ 'extension_install_warning' | translate }}</h2>
<h4>{{ 'extension_template_warning' | translate }}</h4>
<div>{{ 'extension_template_warning' | translate }}</div>
<div *ngFor="let nugetPackage of neededExtensions">
<i class="fa fa-warning"></i> {{nugetPackage.id}}
</div>
</ng-container>

<div *ngIf="installing">
<h2>{{ 'extension_install_warning' | translate }}</h2>
<i class="fa fa-refresh fa-spin fa-fw"></i> {{ 'installingExtension' | translate }}
<div><i class="fa fa-refresh fa-spin fa-fw"></i> {{ 'installingExtension' | translate }}</div>
</div>

<div *ngIf="!installing && allInstalled">
Expand Down
2 changes: 1 addition & 1 deletion server/Resources/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -2720,7 +2720,7 @@ Set to "External URL" to use an API definition that is hosted elsewhere.</value>
<value>This template requires the following extensions.</value>
</data>
<data name="installingExtension" xml:space="preserve">
<value>Installing template dependencies, you will be able to create a function once this is done. Dependency installation happens in the background and can take up to 2 minutes. You can close this blade and continue to use the portal during this time.</value>
<value>Installing template dependencies. You will be able to create a function once this is done. Dependency installation happens in the background and can take up to 2 minutes. You can close this blade and continue to use the portal during this time.</value>
</data>
<data name="failedToInstallFunctionRuntimeExtensionForId" xml:space="preserve">
<value>We are not able to install runtime extension. Install id {{installationId}}</value>
Expand Down

0 comments on commit bf7cc1a

Please sign in to comment.