aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-02-08 10:56:03 +0100
committerMario Vavti <mario@mariovavti.com>2017-02-08 10:56:03 +0100
commitace0a1cb754422da929784b9bd24b4c106d2a66e (patch)
tree362b5a9e82a67d9c4601a70cc4dc7981cf27464d /view
parent6ceaea8478a08e8f2a5fc10f085a99331cbef36f (diff)
downloadvolse-hubzilla-ace0a1cb754422da929784b9bd24b4c106d2a66e.tar.gz
volse-hubzilla-ace0a1cb754422da929784b9bd24b4c106d2a66e.tar.bz2
volse-hubzilla-ace0a1cb754422da929784b9bd24b4c106d2a66e.zip
do not show feature button if the app is shared. css fixes
Diffstat (limited to 'view')
-rw-r--r--view/theme/redbasic/css/style.css5
-rw-r--r--view/tpl/app.tpl7
2 files changed, 7 insertions, 5 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 02ee689ce..52a8abb03 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2104,6 +2104,9 @@ dl.bb-dl > dd > li {
font-size: 80px;
color: $toolicon_colour;
text-shadow: 3px 3px 3px lightgrey;
+}
+
+.app-detail {
text-align: center;
}
@@ -2112,4 +2115,4 @@ dl.bb-dl > dd > li {
margin-top: 20px;
margin-left: auto;
margin-right: auto;
-} \ No newline at end of file
+}
diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl
index 2ecb5a701..ba97ad501 100644
--- a/view/tpl/app.tpl
+++ b/view/tpl/app.tpl
@@ -11,19 +11,18 @@
<a href="{{$app.page}}" class="btn btn-default" title="{{$purchase}}" ><i class="fa fa-external"></i></a>
</div>
{{/if}}
-
+ {{if $install || $update || $delete || $feature}}
<div class="app-tools">
<form action="{{$hosturl}}appman" method="post">
<input type="hidden" name="papp" value="{{$app.papp}}" />
- {{if $install || $update || $delete }}
{{if $install}}<button type="submit" name="install" value="{{$install}}" class="btn btn-default btn-xs" title="{{$install}}" ><i class="fa fa-arrow-circle-o-down" ></i></button>{{/if}}
{{if $edit}}<input type="hidden" name="appid" value="{{$app.guid}}" /><button type="submit" name="edit" value="{{$edit}}" class="btn btn-default btn-xs" title="{{$edit}}" ><i class="fa fa-pencil" ></i></button>{{/if}}
{{if $delete}}<button type="submit" name="delete" value="{{if $deleted}}{{$undelete}}{{else}}{{$delete}}{{/if}}" class="btn btn-default btn-xs" title="{{if $deleted}}{{$undelete}}{{else}}{{$delete}}{{/if}}" ><i class="fa fa-trash-o drop-icons"></i></button>{{/if}}
- {{/if}}
- <button type="submit" name="feature" value="feature" class="btn btn-default btn-xs" ><i class="fa fa-star"{{if $featured}} style="color: gold"{{/if}}></i></button>
+ {{if $feature}}<button type="submit" name="feature" value="feature" class="btn btn-default btn-xs" ><i class="fa fa-star"{{if $featured}} style="color: gold"{{/if}}></i></button>{{/if}}
</form>
</div>
{{/if}}
+ {{/if}}
</div>
{{else}}
<li><a href="{{$app.url}}">{{if $icon}}<i class="generic-icons-nav fa fa-fw fa-{{$icon}}"></i>{{else}}<img src="{{$app.photo}}" width="16" height="16" style="margin-right:9px;"/>{{/if}}{{$app.name}}</a></li>