Mailing List Archive

How to widen the search suggestions box?
Hi

If the search suggestions are too long for displaying (longer than the input-field), it omits the center part.

I've seen that the dropdown menu in several wikis (also on mediawiki.org) widens if the suggest results are too long.

How can I implement that to my wiki?

Thanks a lot.

Lukas Tanner


mw-version: 1.16.0
php-version: 5.26
mySQL: 5.051.a
Apache2
_______________________________________________
MediaWiki-l mailing list
MediaWiki-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Re: How to widen the search suggestions box? [ In reply to ]
In MediaWiki:Common.js, override the JavaScript variable (from skins/common/mwsuggest.js) that controls the width. For example:

os_container_max_width = 3; // Note: this is a percent.

DanB


_______________________________________________
MediaWiki-l mailing list
MediaWiki-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Re: How to widen the search suggestions box? [ In reply to ]
Thanks for the answer.

I just tested, and it only works if I disable the Extension:UsabilityInitiative in $IP/LocalSettings.php

#require_once("$IP/extensions/UsabilityInitiative/Vector/Vector.php");


Do you know something about this bug and how to fix it?

Greets



_______________________________________________
MediaWiki-l mailing list
MediaWiki-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Re: How to widen the search suggestions box? [ In reply to ]
Try changing the width with CSS in MediaWiki:Vector.css, the default is 9em,
on Wikipedia it's 14em.

#simpleSearch input#searchInput {
width: 14em;
}

hth
Frank

PS
The use of Firebug for such kind of modifications is highly recommended.

--
View this message in context: http://old.nabble.com/How-to-widen-the-search-suggestions-box--tp29479681p30424423.html
Sent from the WikiMedia General mailing list archive at Nabble.com.


_______________________________________________
MediaWiki-l mailing list
MediaWiki-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l