From 42e4221ecb65560f0164761407af52f9db09c033 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Sat, 13 Jun 2015 23:14:08 -0700 Subject: [PATCH] gitweb.css: make sure timezone popup actually pops up Add a z-index: 1 setting so the popup does not get overwritten by any backgrounds/borders especially on the summary page. Signed-off-by: Kyle J. McKay --- gitweb/static/gitweb.css | 1 + 1 file changed, 1 insertion(+) diff --git a/gitweb/static/gitweb.css b/gitweb/static/gitweb.css index 3212601032..02cced9a3e 100644 --- a/gitweb/static/gitweb.css +++ b/gitweb/static/gitweb.css @@ -638,6 +638,7 @@ div.remote { .popup { /* timezone selection UI */ position: absolute; + z-index: 1; /* "top: 0; right: 0;" would be better, if not for bugs in browsers */ top: 0; left: 0; border: 1px solid; -- 2.11.4.GIT