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/2041-update-ibrowse Commit: e389a8ba2a79da2669b536ca242b5dfdee4faba3 Parents: 6151c58 Author: BigBlueHat <[email protected]> Authored: Thu Feb 13 09:13:50 2014 -0500 Committer: Garren Smith <[email protected]> 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;
