* [DEV] UI tweaks & updated translations

This commit is contained in:
nuxsmin
2017-01-09 01:11:50 +01:00
parent e7dd1ef0a6
commit bd1bd9d91b
8 changed files with 453 additions and 411 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -434,6 +434,10 @@ pre, code, samp, kbd {
text-align: left; }
#content .data-table tbody td.cell-actions {
text-align: right; }
#content .data-table tbody td.cell-actions i {
opacity: .5; }
#content .data-table tbody td.cell-actions i:hover {
opacity: 1; }
#content .data-rows ul {
display: table;
list-style: none;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -411,6 +411,12 @@
}
&.cell-actions {
text-align: right;
i {
opacity: .5;
&:hover {
opacity: 1;
}
}
}
}
}

View File

@@ -47,7 +47,7 @@ class Icons extends ThemeIconsBase
$this->iconView = new FontIcon('visibility', 'mdl-color-text--indigo-A200', _('Ver Detalles'));
$this->iconViewPass = new FontIcon('lock_open', 'mdl-color-text--indigo-A200', _('Ver Clave'));
$this->iconEdit = new FontIcon('mode_edit', 'mdl-color-text--amber-A200', _('Editar'));
$this->iconDelete = new FontIcon('delete', 'mdl-color-text--red-A200', _('Eliminar'));
$this->iconDelete = new FontIcon('remove_circle', 'mdl-color-text--red-A200', _('Eliminar'));
$this->iconEditPass = new FontIcon('lock_outline', 'mdl-color-text--amber-A200', _('Cambiar Clave'));
$this->iconAppAdmin = new FontIcon('star', 'mdl-color-text--amber-A100', _('Admin Aplicación'));
$this->iconAccAdmin = new FontIcon('star_half', 'mdl-color-text--amber-A100', _('Admin Cuentas'));

View File

@@ -26,8 +26,6 @@ use SP\Html\Html;
<?php if ($dataItem->{$rowSrcIcon['field']} == $rowSrcIcon['value']): ?>
<i class="material-icons <?php echo $rowSrcIcon['icon']->getClass(); ?>"
title="<?php echo $rowSrcIcon['icon']->getTitle(); ?>"><?php echo $rowSrcIcon['icon']->getIcon(); ?></i>
<?php else: ?>
&nbsp;
<?php endif; ?>
<?php endforeach; ?>
</td>