diff --git a/ChangeLog b/ChangeLog index 02f882856..55658a447 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,9 @@ $Source$ 2005-02-16 Alexander M. Turek * db_details_export.php: Views are not exportable yet. + * themes/*/css/theme_right.css.php: Allow to mark a whole row as disabled. + * server_engines.php: Use new CSS class 'disabled' for unavailable + engines. 2005-02-14 Michal Čihař * tbl_printview.php, libraries/tbl_indexes.lib.php: Fix displaying diff --git a/server_engines.php b/server_engines.php index d6e169cc3..b62c25c34 100644 --- a/server_engines.php +++ b/server_engines.php @@ -144,7 +144,7 @@ if (empty($engine) || empty($mysql_storage_engines[$engine])) { $useBgcolorOne = TRUE; $common_url = './server_engines.php?' . PMA_generate_common_url() . '&engine='; foreach ($mysql_storage_engines as $engine => $details) { - echo ' ' . "\n" + echo ' ' . "\n" . ' ' . "\n" . ' ' . "\n" . ' ' . htmlspecialchars($details['Engine']) . "\n" diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php index 3c24697b6..7d569cba3 100644 --- a/themes/darkblue_orange/css/theme_right.css.php +++ b/themes/darkblue_orange/css/theme_right.css.php @@ -500,7 +500,7 @@ img, input, select, button { color: #666666; text-decoration: none; } -td.disabled { +tr.disabled td, td.disabled { background-color: #cccccc; } diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index f4aac3ead..4016334e6 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -285,7 +285,7 @@ img, input, select, button { .disabled a:hover { text-decoration: none; } -td.disabled { +tr.disabled td, td.disabled { background-color: #cccccc; }