add class table-hover to table

This commit is contained in:
Uwe Steinmann 2016-05-18 09:19:46 +02:00
parent f894ac441a
commit 0006416b7e
2 changed files with 2 additions and 2 deletions

View File

@ -450,7 +450,7 @@ class SeedDMS_View_Search extends SeedDMS_Bootstrap_Style {
$this->pageList($pageNumber, $totalpages, "../out/out.Search.php", $urlparams);
// $this->contentContainerStart();
print "<table class=\"table\">";
print "<table class=\"table table-hover\">";
print "<thead>\n<tr>\n";
print "<th></th>\n";
print "<th>".getMLText("name")."</th>\n";

View File

@ -248,7 +248,7 @@ function folderSelected(id, name) {
$documents = SeedDMS_Core_DMS::filterAccess($documents, $user, M_READ);
if ((count($subFolders) > 0)||(count($documents) > 0)){
print "<table id=\"viewfolder-table\" class=\"table\">";
print "<table id=\"viewfolder-table\" class=\"table table-hover\">";
print "<thead>\n<tr>\n";
print "<th></th>\n";
print "<th><a href=\"../out/out.ViewFolder.php?folderid=". $folderid .($orderby=="n"?"&orderby=s":"&orderby=n")."\">".getMLText("name")."</a></th>\n";