stylefixes for sai tables

This commit is contained in:
messerbill 2014-05-30 13:56:01 +02:00
parent 18a6cd5cdf
commit 1a2ec35520
3 changed files with 16 additions and 3 deletions

View File

@ -12,9 +12,9 @@ class saimod_sys_cache extends \SYSTEM\SAI\SaiModule {
$r = $res->next();
$result = '<h3>Cache</h3>'.
$result = '<h4>Cache</h4><hr>'.
'Entries: '.$r['count'].' showing 100'.
'<table class="table table-hover table-condensed" style="overflow: auto;">'.
'<table class="sai_table table table-hover table-condensed" style="overflow: auto;">'.
'<tr>'.'<th>'.'ID'.'</th>'.'<th>'.'CacheID'.'</th>'.'<th>'.'Ident'.'</th>'.'<th>'.'Data'.'</th>'.'</tr>';

View File

@ -25,4 +25,16 @@
.carousel-img{
width: 1200px;
height: 650px;
}
.sai_p_modules {
border-left: 3px solid #1C569C;
}
.sai_p_modules:hover {
border-right: 3px solid #1C569C;
border-left: 0;
}
.sai_p_modules:active {
border-right: 3px solid #1C569C;
border-left: 0;
}

View File

@ -36,7 +36,8 @@ class default_page extends \SYSTEM\PAGE\Page {
private function css(){
$result = '<link rel="stylesheet" href="'.\SYSTEM\WEBPATH(new \SYSTEM\PSAI(),'page/css/libs/bootstrap.min.css').'" type="text/css" />'.
'<link rel="stylesheet" href="'.\SYSTEM\WEBPATH(new \SYSTEM\PSAI(),'page/css/index.css').'" type="text/css" />';
'<link rel="stylesheet" href="'.\SYSTEM\WEBPATH(new \SYSTEM\PSAI(),'page/css/index.css').'" type="text/css" />'.
'<link rel="stylesheet" href="'.\SYSTEM\WEBPATH(new \SYSTEM\PSAI(),'page/css/sai_table.css').'" type="text/css" />';
return $result;
}