aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/home.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2019-10-21 14:01:10 +0200
committervincent-peugnet <v.peugnet@free.fr>2019-10-21 14:01:10 +0200
commit34e060e14c791b7b22cf9517be7ab2383ce74644 (patch)
tree8ed85405ed3b4b847754ffb0bb686a03b3d23cef /app/view/templates/home.php
parentfb4495924c35f33ea2f0d5c27c2f9b730b6558f2 (diff)
downloadwcms-34e060e14c791b7b22cf9517be7ab2383ce74644.tar.gz
wcms-34e060e14c791b7b22cf9517be7ab2383ce74644.zip
CSS mobile clean-up
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r--app/view/templates/home.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php
index f767b13..3c2db4d 100644
--- a/app/view/templates/home.php
+++ b/app/view/templates/home.php
@@ -29,20 +29,20 @@
<div class="block">
- <h2>Pages (<?= count($table2) ?>)</h2>
+ <h2 class="hidephone">Pages (<?= count($table2) ?>)</h2>
<div class="scroll">
<table id="home2table">
<thead>
<tr>
- <th>x</th>
+ <th class="hidephone">x</th>
<th><a href="<?= $opt->getadress('id') ?>">id</a></th>
<th>edit</th>
<th>see</th>
<th class="delete" title="delete page">del</th>
<?php if ($user->issupereditor()) { ?>
- <th class="download" title="download page as json">dl</th>
+ <th class="download hidephone" title="download page as json">dl</th>
<?php }
if ($columns['tag']) { ?>
<th class="tag"><a href="<?= $opt->getadress('tag') ?>">tag</a></th>
@@ -85,13 +85,13 @@
<tbody>
<?php foreach ($table2 as $item) { ?>
<tr>
- <td><input type="checkbox" name="id[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>"></td>
+ <td class="hidephone"><input type="checkbox" name="id[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>"></td>
<td><label title="<?= $item->title() ?>" for="id_<?= $item->id() ?>"><?= $item->id() ?></label></td>
<td><a href="<?= $this->upage('pageedit', $item->id()) ?>"><img src="<?= Model::iconpath() ?>edit.png" class="icon"></a></td>
<td><a href="<?= $this->upage('pageread/', $item->id()) ?>" target="_blank"><img src="<?= Model::iconpath() ?>read.png" class="icon"></a></td>
<td class="delete"><a href="<?= $this->upage('pagedelete', $item->id()) ?>">✖</a></td>
<?php if ($user->issupereditor()) { ?>
- <td><a href="<?= $this->upage('pagedownload', $item->id()) ?>" download><img src="<?= Model::iconpath() ?>download.png" class="icon"></a></td>
+ <td class="hidephone"><a href="<?= $this->upage('pagedownload', $item->id()) ?>" download><img src="<?= Model::iconpath() ?>download.png" class="icon"></a></td>
<?php }
if ($columns['tag']) { ?>
<td class="tag"><a title="<?= $item->tag('string') ?>"><?= $item->tag('sort') ?></a></td>