gitweb: Fix searchbox positioning

Currently, searchbox is CSS'd to have position: absolute, which has the
unfortunate consequence that if the viewport is too small and can't fit
into the page width together with the navbar, it gets overlapped and part
of the navbar gets obscured. This makes searchbox float: right instead,
thus the navbar simply gets wrapped.

Discovered and fix pointed out by Michael Olson <mwolson@gnu.org>.

Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Petr Baudis 2007-08-26 21:31:32 +02:00 committed by Junio C Hamano
parent 67c10b422c
commit 67aca456a3

View file

@ -430,7 +430,7 @@ div.search {
font-size: 100%;
font-weight: normal;
margin: 4px 8px;
position: absolute;
float: right;
top: 56px;
right: 12px
}