more popup fixes
This commit is contained in:
parent
5d58f16e0f
commit
cae1da96bb
3 changed files with 7 additions and 3 deletions
|
@ -22,14 +22,15 @@
|
|||
<?php foreach($this->files as $file): ?>
|
||||
<tr>
|
||||
<td width="50%">
|
||||
<a href="javascript: void(0);" onclick="window.open('<?php echo "{$this->base}/img/{$this->type}/{$file}" ?>', 'Bild', 'width=500,height=400,status=yes,scrollbars=yes,resizable=yes');">
|
||||
<a href="#" onclick="window.open('<?php echo "{$this->base}/img/{$this->type}/{$file}" ?>', 'Bild', 'width=800,height=600,status=yes,scrollbars=yes,resizable=yes'); return false;">
|
||||
<img src="<?php echo "{$this->base}/img/{$this->type}/{$file}" ?>" >
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="javascript: void(0);" onclick="adminPageInsertImage(<?php echo "'{$this->type}', '{$file}'" ?>); window.close();" >Einfügen</a>
|
||||
<br>
|
||||
<a href="?delete=<?php echo $file ?>">Löschen</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="?delete=<?php echo $file ?>" onclick="return confirm('Wirklich löschen?')">Löschen</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 155 KiB |
|
@ -3,3 +3,6 @@ h1 { color: white; background: #CB3829; padding: 0.3em; font-size: 1em; }
|
|||
img { max-width: 200px; }
|
||||
a { text-decoration: none; color: #2877A2; }
|
||||
|
||||
table { width: 100%; }
|
||||
tr td:last-child {text-align: right; }
|
||||
tr td:last-child a { color: red; }
|
Loading…
Add table
Add a link
Reference in a new issue