Show version and author in install dialog
This commit is contained in:
@@ -210,6 +210,16 @@ html {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.appstore-install-title {
|
||||
display: inline-block;
|
||||
margin: 5px 10px;
|
||||
}
|
||||
|
||||
.appstore-install-meta {
|
||||
margin-left: 10px;
|
||||
color: $text-muted;
|
||||
}
|
||||
|
||||
.appstore-category-link:hover,
|
||||
.appstore-category-link:focus,
|
||||
.appstore-category-link.category-active {
|
||||
@@ -323,10 +333,11 @@ html {
|
||||
}
|
||||
|
||||
.app-icon {
|
||||
min-height: 64px;
|
||||
max-height: 64px;
|
||||
min-width: 64px;
|
||||
min-height: 80px;
|
||||
max-height: 80px;
|
||||
min-width: 80px;
|
||||
max-width: 100%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
// ----------------------------
|
||||
|
||||
@@ -4,10 +4,12 @@
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title" id="appInstallModalLabel">
|
||||
<img ng-src="{{appInstall.app.iconUrl}}" onerror="this.onerror=null;this.src='img/appicon_fallback.png'" class="app-icon"/>
|
||||
{{ appInstall.app.manifest.title }}
|
||||
</h3>
|
||||
<img ng-src="{{appInstall.app.iconUrl}}" onerror="this.onerror=null;this.src='img/appicon_fallback.png'" class="app-icon"/>
|
||||
<h3 class="appstore-install-title">{{ appInstall.app.manifest.title }}</h3>
|
||||
<br/>
|
||||
<span class="appstore-install-meta">{{ appInstall.app.manifest.author }}</span>
|
||||
<br/>
|
||||
<span class="appstore-install-meta">{{ appInstall.app.manifest.version }}</span>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="collapse" id="collapseInstallForm" data-toggle="false">
|
||||
|
||||
Reference in New Issue
Block a user