mirror of
https://github.com/vrana/adminer.git
synced 2025-08-13 01:54:00 +02:00
Simplify images
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@645 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
BIN
cross.gif
BIN
cross.gif
Binary file not shown.
Before Width: | Height: | Size: 74 B After Width: | Height: | Size: 66 B |
@@ -11,7 +11,7 @@ td, th { margin-bottom: 1em; border: 0; border-right: 1px solid #999; border-bot
|
||||
th { background: #eee; }
|
||||
fieldset { display: inline; vertical-align: top; padding: .5em .8em; margin: 0 .5em .5em 0; border: 1px solid #999; }
|
||||
p { margin: 0 20px 1em 0; }
|
||||
img { vertical-align: middle; }
|
||||
img { vertical-align: middle; border: 0; }
|
||||
code { background: #eee; }
|
||||
.js .hidden { display: none; }
|
||||
.nowrap { white-space: nowrap; }
|
||||
|
BIN
down.gif
BIN
down.gif
Binary file not shown.
Before Width: | Height: | Size: 71 B After Width: | Height: | Size: 63 B |
@@ -135,7 +135,7 @@ function edit_fields($fields, $collations, $type = "TABLE", $allowed = 0) {
|
||||
<td><input type="radio" name="auto_increment_col" value="" /><?php echo lang('Auto Increment'); ?></td>
|
||||
<td<?php echo ($column_comments ? "" : " class='hidden'"); ?>><?php echo lang('Comment'); ?></td>
|
||||
<?php } ?>
|
||||
<td><input type="image" name="add[0]" src="plus.gif" title="<?php echo lang('Add next'); ?>" /><script type="text/javascript">row_count = <?php echo count($fields); ?>;</script></td>
|
||||
<td><input type="image" name="add[0]" src="plus.gif" alt="+" title="<?php echo lang('Add next'); ?>" /><script type="text/javascript">row_count = <?php echo count($fields); ?>;</script></td>
|
||||
</tr></thead>
|
||||
<?php
|
||||
foreach ($fields as $i => $field) {
|
||||
@@ -152,10 +152,10 @@ function edit_fields($fields, $collations, $type = "TABLE", $allowed = 0) {
|
||||
<td<?php echo ($column_comments ? "" : " class='hidden'"); ?>><input name="fields[<?php echo $i; ?>][comment]" value="<?php echo htmlspecialchars($field["comment"]); ?>" maxlength="255" /></td>
|
||||
<?php } ?>
|
||||
<td class="nowrap">
|
||||
<input type="image" name="add[<?php echo $i; ?>]" src="plus.gif" title="<?php echo lang('Add next'); ?>" onclick="return !editing_add_row(this, <?php echo $allowed; ?>);" />
|
||||
<input type="image" name="drop_col[<?php echo $i; ?>]" src="cross.gif" title="<?php echo lang('Remove'); ?>" onclick="return !editing_remove_row(this);" />
|
||||
<input type="image" name="up[<?php echo $i; ?>]" src="up.gif" title="<?php echo lang('Move up'); ?>" />
|
||||
<input type="image" name="down[<?php echo $i; ?>]" src="down.gif" title="<?php echo lang('Move down'); ?>" />
|
||||
<input type="image" name="add[<?php echo $i; ?>]" src="plus.gif" alt="+" title="<?php echo lang('Add next'); ?>" onclick="return !editing_add_row(this, <?php echo $allowed; ?>);" />
|
||||
<input type="image" name="drop_col[<?php echo $i; ?>]" src="cross.gif" alt="x" title="<?php echo lang('Remove'); ?>" onclick="return !editing_remove_row(this);" />
|
||||
<input type="image" name="up[<?php echo $i; ?>]" src="up.gif" alt="^" title="<?php echo lang('Move up'); ?>" />
|
||||
<input type="image" name="down[<?php echo $i; ?>]" src="down.gif" alt="v" title="<?php echo lang('Move down'); ?>" />
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
|
BIN
plus.gif
BIN
plus.gif
Binary file not shown.
Before Width: | Height: | Size: 72 B After Width: | Height: | Size: 64 B |
Reference in New Issue
Block a user