commit/galaxy-central: kanwei: trackster: move summary count text darker and aligned at the top for better visibility in most cases, and only draw if there is some padding so that numbers don't bunch up
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/a63f9278392d/ changeset: r5016:a63f9278392d user: kanwei date: 2011-02-07 22:59:12 summary: trackster: move summary count text darker and aligned at the top for better visibility in most cases, and only draw if there is some padding so that numbers don't bunch up affected #: 1 file (148 bytes) --- a/static/scripts/trackster.js Mon Feb 07 15:22:23 2011 -0500 +++ b/static/scripts/trackster.js Mon Feb 07 16:59:12 2011 -0500 @@ -2352,10 +2352,12 @@ ctx.fillStyle = "black"; ctx.fillRect(x + left_offset, this.summary_draw_height - y_px, delta_x_px, y_px); - if (this.prefs.show_counts && ctx.measureText(y).width < delta_x_px) { - ctx.fillStyle = "#bbb"; + // Draw number count if it can fit the number with some padding, otherwise things clump up + var text_padding_req_x = 4; + if (this.prefs.show_counts && (ctx.measureText(y).width + text_padding_req_x) < delta_x_px) { + ctx.fillStyle = "#666"; ctx.textAlign = "center"; - ctx.fillText(y, x + left_offset + (delta_x_px/2), this.summary_draw_height - 5); + ctx.fillText(y, x + left_offset + (delta_x_px/2), 10); } } return canvas; Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket