mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
Only make changes for frio. (#5347)
This commit is contained in:
parent
34b17ed8fe
commit
dd00a943f2
2 changed files with 31 additions and 1 deletions
|
@ -2949,7 +2949,7 @@ section.help-content-wrapper li {
|
|||
padding-top: 10px;
|
||||
}
|
||||
#adminpage ul#pluginslist, li.plugin {
|
||||
padding-top: 10px;
|
||||
list-style: none;
|
||||
}
|
||||
#adminpage li .icon {
|
||||
display: inline-block;
|
||||
|
@ -3008,6 +3008,14 @@ section.help-content-wrapper li {
|
|||
.adminpage .table-hover > tbody > tr:hover + tr.details {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.offset-anchor::before {
|
||||
display: block;
|
||||
content: " ";
|
||||
margin-top: -100px;
|
||||
height: 100px;
|
||||
visibility: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Register Page*/
|
||||
#register-openid-wrapper, #register-name-wrapper, #register-invite-wrapper, #profile-publish-wrapper {
|
||||
|
|
22
view/theme/frio/templates/admin/addons.tpl
Normal file
22
view/theme/frio/templates/admin/addons.tpl
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
<div id='adminpage'>
|
||||
<h1>{{$title}} - {{$page}}</h1>
|
||||
{{if $pcount eq 0}}
|
||||
<div class="error-message">
|
||||
{{$noplugshint}}
|
||||
</div>
|
||||
{{else}}
|
||||
<a class="btn" href="{{$baseurl}}/admin/{{$function}}?a=r&t={{$form_security_token}}">{{$reload}}</a>
|
||||
<ul id='pluginslist'>
|
||||
{{foreach $addons as $p}}
|
||||
<li class="plugin {{$p.1}}">
|
||||
<span class="offset-anchor" id="{{$p.0}}"></span>
|
||||
<a class='toggleplugin' href='{{$baseurl}}/admin/{{$function}}/{{$p.0}}?a=t&t={{$form_security_token}}#{{$p.0}}' title="{{if $p.1==on}}Disable{{else}}Enable{{/if}}" ><span class='icon {{$p.1}}'></span></a>
|
||||
<a href='{{$baseurl}}/admin/{{$function}}/{{$p.0}}'><span class='name'>{{$p.2.name}}</span></a> - <span class="version">{{$p.2.version}}</span>
|
||||
{{if $p.2.experimental}} {{$experimental}} {{/if}}{{if $p.2.unsupported}} {{$unsupported}} {{/if}}
|
||||
<div class='desc'>{{$p.2.description}}</div>
|
||||
</li>
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
{{/if}}
|
||||
</div>
|
Loading…
Reference in a new issue