collapse app descriptions by default, make expandable, fix #13112
This commit is contained in:
parent
0868e49663
commit
bdb4089139
|
@ -217,6 +217,21 @@ span.version { margin-left:1em; margin-right:1em; color:#555; }
|
||||||
.recommendedapp {
|
.recommendedapp {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.app-description-toggle-show,
|
||||||
|
.app-description-toggle-hide {
|
||||||
|
clear: both;
|
||||||
|
padding: 7px 0;
|
||||||
|
cursor: pointer;
|
||||||
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
||||||
|
opacity: .5;
|
||||||
|
}
|
||||||
|
.app-description-container {
|
||||||
|
clear: both;
|
||||||
|
position: relative;
|
||||||
|
top: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
.app-description {
|
.app-description {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
|
@ -369,6 +369,17 @@ OC.Settings.Apps = OC.Settings.Apps || {
|
||||||
OC.Settings.Apps.loadCategory(categoryId);
|
OC.Settings.Apps.loadCategory(categoryId);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$(document).on('click', '.app-description-toggle-show', function () {
|
||||||
|
$(this).addClass('hidden');
|
||||||
|
$(this).siblings('.app-description-toggle-hide').removeClass('hidden');
|
||||||
|
$(this).siblings('.app-description-container').slideDown();
|
||||||
|
});
|
||||||
|
$(document).on('click', '.app-description-toggle-hide', function () {
|
||||||
|
$(this).addClass('hidden');
|
||||||
|
$(this).siblings('.app-description-toggle-show').removeClass('hidden');
|
||||||
|
$(this).siblings('.app-description-container').slideUp();
|
||||||
|
});
|
||||||
|
|
||||||
$(document).on('click', '#apps-list input.enable', function () {
|
$(document).on('click', '#apps-list input.enable', function () {
|
||||||
var appId = $(this).data('appid');
|
var appId = $(this).data('appid');
|
||||||
var element = $(this);
|
var element = $(this);
|
||||||
|
|
|
@ -33,6 +33,8 @@
|
||||||
<div class="{{internalclass}} icon-checkmark">{{internallabel}}</div>
|
<div class="{{internalclass}} icon-checkmark">{{internallabel}}</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div class="app-detailpage"></div>
|
<div class="app-detailpage"></div>
|
||||||
|
|
||||||
|
<div class="app-description-container hidden">
|
||||||
<div class="app-description"><pre>{{description}}</pre></div>
|
<div class="app-description"><pre>{{description}}</pre></div>
|
||||||
<!--<div class="app-changed">{{changed}}</div>-->
|
<!--<div class="app-changed">{{changed}}</div>-->
|
||||||
{{#if documentation}}
|
{{#if documentation}}
|
||||||
|
@ -51,6 +53,10 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</p>
|
</p>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
</div><!-- end app-description-container -->
|
||||||
|
<div class="app-description-toggle-show"><?php p($l->t("Show description …"));?></div>
|
||||||
|
<div class="app-description-toggle-hide hidden"><?php p($l->t("Hide description …"));?></div>
|
||||||
|
|
||||||
{{#unless canInstall}}
|
{{#unless canInstall}}
|
||||||
<div class="app-dependencies">
|
<div class="app-dependencies">
|
||||||
<p><?php p($l->t('This app cannot be installed because the following dependencies are not fulfilled:')); ?></p>
|
<p><?php p($l->t('This app cannot be installed because the following dependencies are not fulfilled:')); ?></p>
|
||||||
|
|
Loading…
Reference in New Issue