From b9e4806d3cfba6f184653f9f81d388516ca58d04 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 12 Mar 2025 17:43:58 +0100 Subject: [PATCH] CSS: lowercase color names --- adminer/schema.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/adminer/schema.inc.php b/adminer/schema.inc.php index fefcf661..d3c74848 100644 --- a/adminer/schema.inc.php +++ b/adminer/schema.inc.php @@ -75,7 +75,7 @@ foreach ($schema as $name => $table) { $i = 0; foreach ($ref[0] as $source) { echo "\n
" - . "
" + . "
" ; } } @@ -88,7 +88,7 @@ foreach ($schema as $name => $table) { foreach ($columns as $target) { echo "\n
" - . "
" + . "
" . "
" ; } @@ -109,7 +109,7 @@ foreach ($schema as $name => $table) { $min_pos = min($min_pos, $pos1, $pos2); $max_pos = max($max_pos, $pos1, $pos2); } - echo "
\n"; + echo "
\n"; } } }