Skip to content

Commit

Permalink
Fixes #8917: Code blocks in the doc overflow the page width
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelGauthier committed Sep 7, 2016
1 parent 2d6e660 commit 020b01e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions template/common/css/positioning.css
Original file line number Diff line number Diff line change
Expand Up @@ -507,4 +507,12 @@ div.navfooter hr {
background-color: #F2F2FF;
color: #4E4726;
}
}

#content > .section > .toc + p + p + div.tip > table > tbody > tr:last-child > td:first-child {
max-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
width: 100%;
}

0 comments on commit 020b01e

Please sign in to comment.