Skip to content

Commit

Permalink
add scroolbars to wide graphs. (#608)
Browse files Browse the repository at this point in the history
* Add scrollbars to graph and revlist if needed.

* Add border
  • Loading branch information
kjellkvinge authored and lunny committed Jan 22, 2017
1 parent f8c2903 commit f9a3aa8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
9 changes: 5 additions & 4 deletions public/css/gitgraph.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ body {font:13.34px/1.4 helvetica,arial,freesans,clean,sans-serif;}
em {font-style:normal;}

#git-graph-container, #rel-container {float:left;}
#git-graph-container {}
#git-graph-container li {list-style-type:none;height:20px;line-height:20px;overflow:hidden;}
#rel-container {max-width:30%; overflow-x:auto;}
#git-graph-container {overflow-x:auto; width:100%}
#git-graph-container li {list-style-type:none;height:20px;line-height:20px; white-space:nowrap;}
#git-graph-container li .node-relation {font-family:'Bitstream Vera Sans Mono', 'Courier', monospace;}
#git-graph-container li .author {color:#666666;}
#git-graph-container li .time {color:#999999;font-size:80%}
#git-graph-container li a {color:#000000;}
#git-graph-container li a:hover {text-decoration:underline;}
#git-graph-container li a em {color:#BB0000;border-bottom:1px dotted #BBBBBB;text-decoration:none;font-style:normal;}
#rev-container {width:80%}
#rev-list {margin:0;padding:0 5px 0 0;width:80%}
#rev-container {width:100%}
#rev-list {margin:0;padding:0 5px 0 5px;min-width:95%}
#graph-raw-list {margin:0px;}
4 changes: 0 additions & 4 deletions public/js/draw.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,4 @@ $(document).ready(function () {
})

gitGraph(document.getElementById('graph-canvas'), graphList);

if ($("#rev-container")) {
$("#rev-container").css("width", document.body.clientWidth - document.getElementById('graph-canvas').width);
}
})
2 changes: 1 addition & 1 deletion templates/repo/graph.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="ui container">


<div id="git-graph-container">
<div id="git-graph-container" class="ui segment">
<div id="rel-container">
<canvas id="graph-canvas">
<ul id="graph-raw-list">
Expand Down

0 comments on commit f9a3aa8

Please sign in to comment.