On Sun, Jan 28, 2007 at 01:02:07PM +0100, Matthijs Melchior wrote:
> When $site_header is in use and some vertical space is added to the top
> of the web page, the search layout with CSS
> div.search {
>       position: absolute;
>       top: 56px;
>       right: 12px
> }
> is incorrect and ends up to cover the git logo.
> 
> Correcting this by using "position: inherit;" is complicated and may
> involve some code reorganization between
>    git_header_html();   and    git_print_page_nav(...); 
> 
> Please forward this upstream for correction.

Hi Matthijs, I did so, but received no response.  It looks like it has
been fixed upstream in the meanwhile though, this is from 1.5.3.7, also
available through backports.org:

 $ git show v1.5.3.7:gitweb/gitweb.css |grep -A7 search
 div.search {
         font-size: 100%;
         font-weight: normal;
         margin: 4px 8px;
         float: right;
         top: 56px;
         right: 12px
 }
 $ git show v1.5.3.7:gitweb/gitweb.css |grep position  
         position: relative;
         position: relative;
 $ 

Can you confirm it's fixed?

Thanks, Gerrit.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to