New version of front page and login page

This commit is contained in:
Manuel Cillero 2017-09-24 21:54:45 +02:00
parent 66b921be18
commit f339ddbec3
33 changed files with 123 additions and 72 deletions

View file

@ -497,7 +497,7 @@ function zuitedesk_table($header, $rows, $attributes = array(), $caption = NULL)
$attributes['class'] = 'table table-condensed' . (!empty($attributes['class']) ? ' ' . $attributes['class'] : '');
}
if (arg(0) == 'admin' || substr($attributes['id'], 0, 5) == 'storm' || in_array($attributes['id'], array('attributes', 'tasks', 'twatcher'))) {
$attributes['class'] .= ' table-hover';
$attributes['class'] .= (empty($attributes['class']) ? '' : ' ') . 'table-hover';
return '<div class="table-responsive">' . theme_table($header, $rows, $attributes, $caption) . '</div>';
}
return theme_table($header, $rows, $attributes, $caption);