1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

Semi-transparent border on table actions

This commit is contained in:
Jakub Vrana
2018-02-09 15:14:10 +01:00
parent 3906231dc5
commit ea4ac5c8f3
5 changed files with 9 additions and 7 deletions

View File

@@ -120,7 +120,7 @@ if ($adminer->homepage()) {
echo "</table>\n";
if (!information_schema(DB)) {
echo "<div class='footer'>\n";
echo "<div class='footer'><div>\n";
$vacuum = "<input type='submit' value='" . lang('Vacuum') . "'> " . on_help("'VACUUM'");
$optimize = "<input type='submit' name='optimize' value='" . lang('Optimize') . "'> " . on_help($jush == "sql" ? "'OPTIMIZE TABLE'" : "'VACUUM OPTIMIZE'");
echo "<fieldset><legend>" . lang('Selected') . " <span id='selected'></span></legend><div>"
@@ -145,7 +145,7 @@ if ($adminer->homepage()) {
echo script("qsl('input').onclick = function () { selectCount('selected', formChecked(this, /^(tables|views)\[/));" . (support("table") ? " selectCount('selected2', formChecked(this, /^tables\[/) || $tables);" : "") . " }");
echo "<input type='hidden' name='token' value='$token'>\n";
echo "</div></fieldset>\n";
echo "</div>\n";
echo "</div></div>\n";
}
echo "</form>\n";
echo script("tableCheck();");