summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Petr Baudis <pasky@suse.cz>2007-08-26 21:31:32 +0200
committerLibravatar Junio C Hamano <gitster@pobox.com>2007-08-26 13:22:40 -0700
commit67aca456a3cfa9ab8420a6e171d8eee7b0ad2209 (patch)
tree87aa984ecb655bd544c362e449e1091ae8945156
parentMerge branch 'master' of git://linux-nfs.org/~bfields/git (diff)
downloadtgif-67aca456a3cfa9ab8420a6e171d8eee7b0ad2209.tar.xz
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>
-rw-r--r--gitweb/gitweb.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css
index 096313bec0..1b8887987f 100644
--- a/gitweb/gitweb.css
+++ b/gitweb/gitweb.css
@@ -430,7 +430,7 @@ div.search {
font-size: 100%;
font-weight: normal;
margin: 4px 8px;
- position: absolute;
+ float: right;
top: 56px;
right: 12px
}