Commit a2501d158646e2a9eb9c17c3c88a9a24a74ea24b
1 parent
d521cf8d
Exists in
master
and in
4 other branches
more space for days in network graph
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
app/assets/javascripts/branch-graph.js.coffee
| @@ -62,16 +62,16 @@ class BranchGraph | @@ -62,16 +62,16 @@ class BranchGraph | ||
| 62 | cuday = 0 | 62 | cuday = 0 |
| 63 | cumonth = "" | 63 | cumonth = "" |
| 64 | 64 | ||
| 65 | - r.rect(0, 0, 26, @barHeight).attr fill: "#222" | ||
| 66 | - r.rect(26, 0, 20, @barHeight).attr fill: "#444" | 65 | + r.rect(0, 0, 30, @barHeight).attr fill: "#222" |
| 66 | + r.rect(30, 0, 25, @barHeight).attr fill: "#444" | ||
| 67 | 67 | ||
| 68 | for day, mm in @days | 68 | for day, mm in @days |
| 69 | if cuday isnt day[0] | 69 | if cuday isnt day[0] |
| 70 | # Dates | 70 | # Dates |
| 71 | - r.text(36, @offsetY + @unitTime * mm, day[0]) | 71 | + r.text(40, @offsetY + @unitTime * mm, day[0]) |
| 72 | .attr( | 72 | .attr( |
| 73 | font: "12px Monaco, monospace" | 73 | font: "12px Monaco, monospace" |
| 74 | - fill: "#DDD" | 74 | + fill: "#BBB" |
| 75 | ) | 75 | ) |
| 76 | cuday = day[0] | 76 | cuday = day[0] |
| 77 | 77 |