Minor changes on UI
This commit is contained in:
parent
3bd87ae297
commit
6648eec611
|
@ -270,6 +270,10 @@ button.aslink:hover {
|
|||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.uk-table td, .uk-table th {
|
||||
padding: 14px 8px !important;
|
||||
}
|
||||
|
||||
/* RESPONSIVE
|
||||
---------------------------------------------------------------- */
|
||||
|
||||
|
@ -598,7 +602,8 @@ div.plugin-name i.settings-icon {
|
|||
}
|
||||
|
||||
i.incompatible-warning {
|
||||
color: #daa520;
|
||||
color: #FFC425;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
div.plugin-links > a {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?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>';
|
||||
|
||||
|
@ -9,7 +9,7 @@ echo '
|
|||
<thead>
|
||||
<tr>
|
||||
<th>'.$L->g('Name').'</th>
|
||||
<th>'.$L->g('Slug').'</th>
|
||||
<th>'.$L->g('Key').'</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?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'));
|
||||
|
||||
|
|
|
@ -43,9 +43,10 @@ foreach($plugins['all'] as $Plugin)
|
|||
echo '
|
||||
<td class="uk-text-center">';
|
||||
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 '
|
||||
<td class="uk-text-center"><a target="_blank" href="'.$Plugin->website().'">'.$Plugin->author().'</a></td>
|
||||
|
|
Loading…
Reference in New Issue