You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2014/02/19 15:48:04 UTC

[07/23] couchdb commit: updated refs/heads/paginate-api-options to 0fca3e9

fix right hand side scrolling over navigation

If the right hand content got really wide, then
it could easily be scrolled over the primary
navigation on the left.

Fixed it by fixed positioning it.


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/e389a8ba
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/e389a8ba
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/e389a8ba

Branch: refs/heads/paginate-api-options
Commit: e389a8ba2a79da2669b536ca242b5dfdee4faba3
Parents: 6151c58
Author: BigBlueHat <by...@bigbluehat.com>
Authored: Thu Feb 13 09:13:50 2014 -0500
Committer: Garren Smith <ga...@gmail.com>
Committed: Fri Feb 14 08:56:54 2014 +0200

----------------------------------------------------------------------
 src/fauxton/assets/less/fauxton.less | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/e389a8ba/src/fauxton/assets/less/fauxton.less
----------------------------------------------------------------------
diff --git a/src/fauxton/assets/less/fauxton.less b/src/fauxton/assets/less/fauxton.less
index ec3ff55..43e623c 100644
--- a/src/fauxton/assets/less/fauxton.less
+++ b/src/fauxton/assets/less/fauxton.less
@@ -302,8 +302,9 @@ a:hover{
   max-width: 1500px;
   .box-shadow(-6px 0 rgba(0, 0, 0, 0.1));
   border-left: 1px solid #999;
-  position: absolute;
+  position: fixed;
   left: @navWidth;
+  right: 0;
   margin-left: 0;
   background-color: @sidebarBG;
   min-width: 600px;