Commit 5ee6d9c3 authored by Nico Schallehn's avatar Nico Schallehn

test

parent 14ccb659
......@@ -27,7 +27,7 @@ table td, table th { padding: 9px 10px; text-align: left; }
.pinned td:last-child { border-bottom: 0; }
div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
div.table-wrapper div.scrollable { margin-left: 35%; }
div.table-wrapper div.scrollable { margin-left: 25%; }
div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }
table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; }
......
......@@ -16,8 +16,7 @@ function jsonCacheDecoder($url){
}
function TableRowRights($Api, $Data = null){
$ret = '<tr>'.
'<td>'.$Data["from"].'</td>'.
'<td>'.$Data["to"].'</td>';
'<td>'.$Data["from"].' - '.$Data["to"].'</td>';
$Api->SpaltenFilme;
foreach ($Api->SpaltenFilme as $value) {
......@@ -136,7 +135,7 @@ if($_GET["action"] == "filme"){
var_dump($Data);
$content .= ob_get_clean();
$content .= '<table border="1" class="responsive">'.PHP_EOL;
$content .= '<tr><th>Von</th><th>bis</th>';
$content .= '<tr><th>Von - Bis</th>';
foreach ($API->SpaltenFilme as $value) {
$content .= '<th>'.$value.'</th>';
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment