diff --git a/bl-kernel/admin/themes/default/css/default.css b/bl-kernel/admin/themes/default/css/default.css index 7e5aa9a3..b9c18d5f 100644 --- a/bl-kernel/admin/themes/default/css/default.css +++ b/bl-kernel/admin/themes/default/css/default.css @@ -591,6 +591,16 @@ tr.theme-installed { background: #F2F7FF !important; } +div.plugin-name i.settings-icon { + float: right; + margin-top: 3px; + margin-left: 3px; +} + +i.incompatible-warning { + color: #daa520; +} + div.plugin-links > a { display: inline-block; margin-top: 5px; diff --git a/bl-kernel/admin/views/plugins.php b/bl-kernel/admin/views/plugins.php index bdb13af2..b3077f73 100644 --- a/bl-kernel/admin/views/plugins.php +++ b/bl-kernel/admin/views/plugins.php @@ -20,37 +20,35 @@ foreach($plugins['all'] as $Plugin) echo ' installed()?'class="plugin-installed"':'class="plugin-notInstalled"').'> -
'.$Plugin->name().'
- '; echo ''; echo $Plugin->description(); - if( !$Plugin->isCompatible() ) { - echo '
This plugin is incompatible with Bludit v'.BLUDIT_VERSION.'
'; - } echo ''; + echo ' + '; + if( !$Plugin->isCompatible() ) { + echo ''; + } + echo $Plugin->version().''; echo ' - '.$Plugin->version().' - '.$Plugin->author().' + '.$Plugin->author().' '; echo ''; diff --git a/bl-kernel/admin/views/themes.php b/bl-kernel/admin/views/themes.php index 56abd3d7..b8565581 100644 --- a/bl-kernel/admin/views/themes.php +++ b/bl-kernel/admin/views/themes.php @@ -20,29 +20,33 @@ foreach($themes as $theme) echo ' theme()?'class="theme-installed"':'class="theme-notInstalled"').'> -
'.$theme['name'].'
- '; echo ''; echo $theme['description']; + echo ''; + echo ' + '; if( !$theme['compatible'] ) { - echo '
This theme is incompatible with Bludit v'.BLUDIT_VERSION.'
'; + echo ''; } - echo ''; + echo $theme['version'].''; echo ' - '.$theme['version'].' - '.$theme['author'].' + '.$theme['author'].' '; echo '';