fix plugin and them toggles for the colourblind, add theme info block and recent screenshot to redbasic
This commit is contained in:
parent
dc6cd8a701
commit
ed129f19b0
@ -298,10 +298,10 @@ function get_theme_info($theme){
|
||||
'name' => $theme,
|
||||
'description' => "",
|
||||
'author' => array(),
|
||||
'maintainer' => array(),
|
||||
'version' => "",
|
||||
'credits' => "",
|
||||
'compat' => "",
|
||||
'credits' => "",
|
||||
'maintainer' => array(),
|
||||
'experimental' => false,
|
||||
'unsupported' => false
|
||||
);
|
||||
|
@ -3499,6 +3499,7 @@ margin-right: 50px;
|
||||
}
|
||||
|
||||
.comment-icon,
|
||||
.admin-icons,
|
||||
.jot-icons {
|
||||
font-size: 1.2em;
|
||||
color: $toolicon_colour;
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 132 KiB |
@ -1,5 +1,15 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* * Name: Redbasic
|
||||
* * Description: RedMatrix standard theme
|
||||
* * Version: 1.0
|
||||
* * Author: Fabrixxm
|
||||
* * Maintainer: Mike Macgirvin
|
||||
* * Compat: Red [*]
|
||||
*
|
||||
*/
|
||||
|
||||
function redbasic_init(&$a) {
|
||||
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
<ul id='pluginslist'>
|
||||
{{foreach $plugins as $p}}
|
||||
<li class='plugin {{$p.1}}'>
|
||||
<a class='toggleplugin' href='{{$baseurl}}/admin/{{$function}}/{{$p.0}}?a=t&t={{$form_security_token}}' title="{{if $p.1==on}}Disable{{else}}Enable{{/if}}" ><span class='icon {{$p.1}}'></span></a>
|
||||
<a class='toggleplugin' href='{{$baseurl}}/admin/{{$function}}/{{$p.0}}?a=t&t={{$form_security_token}}' title="{{if $p.1==on}}Disable{{else}}Enable{{/if}}" ><i class='{{if $p.1==on}}icon-check{{else}}icon-check-empty{{/if}} admin-icons'></i></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}}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<div class = "generic-content-wrapper" id='adminpage'>
|
||||
<h1>{{$title}} - {{$page}}</h1>
|
||||
|
||||
<p><span class='toggleplugin icon {{$status}}'></span> {{$info.name}} - {{$info.version}} : <a href="{{$baseurl}}/admin/{{$function}}/{{$plugin}}/?a=t&t={{$form_security_token}}">{{$action}}</a></p>
|
||||
<p><i class='toggleplugin {{if $status==on}}icon-check{{else}}icon-check-empty{{/if}} admin-icons'></i> {{$info.name}} - {{$info.version}} : <a href="{{$baseurl}}/admin/{{$function}}/{{$plugin}}/?a=t&t={{$form_security_token}}">{{$action}}</a></p>
|
||||
<p>{{$info.description}}</p>
|
||||
|
||||
<p class="author">{{$str_author}}
|
||||
|
Reference in New Issue
Block a user