Skip to content

Commit

Permalink
fix right hand side scrolling over navigation
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
BigBlueHat authored and garrensmith committed Feb 14, 2014
1 parent 6151c58 commit e389a8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fauxton/assets/less/fauxton.less
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e389a8b

Please sign in to comment.