jquery.suggestions, mediawiki.searchSuggest: Don't use jquery.autoEllipsis
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.searchSuggest.css
index 0fb862b..df144ce 100644 (file)
@@ -4,8 +4,8 @@
 .suggestions a.mw-searchSuggest-link:hover,
 .suggestions a.mw-searchSuggest-link:active,
 .suggestions a.mw-searchSuggest-link:focus {
-       text-decoration: none;
        color: black;
+       text-decoration: none;
 }
 
 .suggestions-result-current a.mw-searchSuggest-link,
 .suggestions-result-current a.mw-searchSuggest-link:focus {
        color: white;
 }
+
+.suggestions a.mw-searchSuggest-link .special-query {
+       /* Apply ellipsis to suggestions */
+       overflow: hidden;
+       -o-text-overflow: ellipsis; /* Opera 9 to 10 */
+       text-overflow: ellipsis;
+       white-space: nowrap;
+}