Minor changes on UI
This commit is contained in:
parent
3bd87ae297
commit
6648eec611
|
@ -270,6 +270,10 @@ button.aslink:hover {
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.uk-table td, .uk-table th {
|
||||||
|
padding: 14px 8px !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* RESPONSIVE
|
/* RESPONSIVE
|
||||||
---------------------------------------------------------------- */
|
---------------------------------------------------------------- */
|
||||||
|
|
||||||
|
@ -598,7 +602,8 @@ div.plugin-name i.settings-icon {
|
||||||
}
|
}
|
||||||
|
|
||||||
i.incompatible-warning {
|
i.incompatible-warning {
|
||||||
color: #daa520;
|
color: #FFC425;
|
||||||
|
padding-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.plugin-links > a {
|
div.plugin-links > a {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
HTML::title(array('title'=>$L->g('Categories'), 'icon'=>'users'));
|
HTML::title(array('title'=>$L->g('Categories'), 'icon'=>'tag'));
|
||||||
|
|
||||||
echo '<a href="'.HTML_PATH_ADMIN_ROOT.'new-category"><i class="uk-icon-plus"></i> '.$L->g('Add a new category').'</a>';
|
echo '<a href="'.HTML_PATH_ADMIN_ROOT.'new-category"><i class="uk-icon-plus"></i> '.$L->g('Add a new category').'</a>';
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ echo '
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>'.$L->g('Name').'</th>
|
<th>'.$L->g('Name').'</th>
|
||||||
<th>'.$L->g('Slug').'</th>
|
<th>'.$L->g('Key').'</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
HTML::title(array('title'=>$L->g('New Category'), 'icon'=>'globe'));
|
HTML::title(array('title'=>$L->g('New Category'), 'icon'=>'tag'));
|
||||||
|
|
||||||
HTML::formOpen(array('class'=>'uk-form-horizontal'));
|
HTML::formOpen(array('class'=>'uk-form-horizontal'));
|
||||||
|
|
||||||
|
|
|
@ -43,9 +43,10 @@ foreach($plugins['all'] as $Plugin)
|
||||||
echo '
|
echo '
|
||||||
<td class="uk-text-center">';
|
<td class="uk-text-center">';
|
||||||
if( !$Plugin->isCompatible() ) {
|
if( !$Plugin->isCompatible() ) {
|
||||||
echo '<i class="uk-icon-exclamation-triangle incompatible-warning" title="This plugin is incompatible with Bludit v'.BLUDIT_VERSION.'"></i>';
|
echo '<i class="uk-icon-exclamation-triangle incompatible-warning" title="'.$L->g('This plugin may not be supported by this version of Bludit').'"></i>';
|
||||||
}
|
}
|
||||||
echo $Plugin->version().'</td>';
|
|
||||||
|
echo '<span>'.$Plugin->version().'</span></td>';
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<td class="uk-text-center"><a target="_blank" href="'.$Plugin->website().'">'.$Plugin->author().'</a></td>
|
<td class="uk-text-center"><a target="_blank" href="'.$Plugin->website().'">'.$Plugin->author().'</a></td>
|
||||||
|
|
Loading…
Reference in New Issue