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 | 62 | cuday = 0 |
63 | 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 | 68 | for day, mm in @days |
69 | 69 | if cuday isnt day[0] |
70 | 70 | # Dates |
71 | - r.text(36, @offsetY + @unitTime * mm, day[0]) | |
71 | + r.text(40, @offsetY + @unitTime * mm, day[0]) | |
72 | 72 | .attr( |
73 | 73 | font: "12px Monaco, monospace" |
74 | - fill: "#DDD" | |
74 | + fill: "#BBB" | |
75 | 75 | ) |
76 | 76 | cuday = day[0] |
77 | 77 | ... | ... |