From cc676254a489b1a0b9b3347ad7ebad054ef6a839 Mon Sep 17 00:00:00 2001 From: Krinkle Date: Tue, 25 Jan 2011 19:53:21 +0000 Subject: [PATCH] Small fixes * Missing space in SpecialPage.php * Raising z-index of .suggestions (when used in a jQuery UI modal box the suggestion list appeared behind the modal instead of on top (ui modal has z-index: 1000; ) --- includes/SpecialPage.php | 2 +- resources/jquery/jquery.suggestions.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index e985f2b3da..348100aad4 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -633,7 +633,7 @@ class SpecialPage { $found = false; foreach ( $aliases as $n => $values ) { if ( strcasecmp( $name, $n ) === 0 ) { - wfWarn( "Found alias defined for $n when searching for" . + wfWarn( "Found alias defined for $n when searching for " . "special page aliases for $name. Case mismatch?" ); $name = $values[0]; $found = true; diff --git a/resources/jquery/jquery.suggestions.css b/resources/jquery/jquery.suggestions.css index f0b48da19a..74094c534a 100644 --- a/resources/jquery/jquery.suggestions.css +++ b/resources/jquery/jquery.suggestions.css @@ -7,7 +7,7 @@ left: 0px; width: 0px; border: none; - z-index: 99; + z-index: 1099; padding: 0; margin: -1px -1px 0 0; } -- 2.20.1