From 393f4772e11c2cc62028570a8ea2c4f0c3ccdc28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Homm=C3=A9?= Date: Thu, 5 May 2011 20:19:58 -0400 Subject: [PATCH 1/3] Darkened .notice normal text to better distinguish between hyperlinks --- themes/pmahomme/css/theme_right.css.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index a2035c392..008810a87 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -634,7 +634,7 @@ div.success { } .notice, .footnotes { - color: #3a6c7e; + color: #000; background-color: #e8eef1; } h1.notice, From 5e82c3634d2ac3f6ff46341d091342ae7c0f070a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Homm=C3=A9?= Date: Mon, 9 May 2011 16:01:21 -0400 Subject: [PATCH 2/3] Fix for 3299241. Updated style for "disabled" topnav buttons. Now easier to read and have a more traditional "disabled" look. --- themes/pmahomme/css/theme_right.css.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 008810a87..fc1b36c37 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -798,6 +798,8 @@ form.login label { /* topmenu */ #topmenu a {text-shadow:0px 1px 0px #fff;} +#topmenu .error{background:#eee;border:0px !important;color:#aaa;} + ul#topmenu, ul#topmenu2, ul.tabs { font-weight: bold; list-style-type: none; From abbd8b5a3f36edd2c77e7bd6f1ce0b23876cc5be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 10 May 2011 11:24:20 +0200 Subject: [PATCH 3/3] Drop last occurence of warning class for messages --- libraries/Error.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/Error.class.php b/libraries/Error.class.php index c499d8da0..2cfd5fe75 100644 --- a/libraries/Error.class.php +++ b/libraries/Error.class.php @@ -47,15 +47,15 @@ class PMA_Error extends PMA_Message */ static public $errorlevel = array ( E_ERROR => 'error', - E_WARNING => 'warning', + E_WARNING => 'error', E_PARSE => 'error', E_NOTICE => 'notice', E_CORE_ERROR => 'error', - E_CORE_WARNING => 'warning', + E_CORE_WARNING => 'error', E_COMPILE_ERROR => 'error', - E_COMPILE_WARNING => 'warning', + E_COMPILE_WARNING => 'error', E_USER_ERROR => 'error', - E_USER_WARNING => 'warning', + E_USER_WARNING => 'error', E_USER_NOTICE => 'notice', E_STRICT => 'notice', E_DEPRECATED => 'notice',