From 65400dac08138fcb579a6d203ca2f20291ebd101 Mon Sep 17 00:00:00 2001 From: jgould Date: Fri, 15 Apr 2016 16:24:27 -0400 Subject: [PATCH] lightened mouse over color --- src/ui/scroll_bar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/scroll_bar.js b/src/ui/scroll_bar.js index ce1d2da..c775e14 100644 --- a/src/ui/scroll_bar.js +++ b/src/ui/scroll_bar.js @@ -107,7 +107,7 @@ morpheus.ScrollBar.prototype = { } else { context.fillStyle = 'rgb(241,241,241)'; context.fillRect(0, 0, width, height); - context.fillStyle = !this.thumbMouseOver ? 'rgb(188,188,188)' + context.fillStyle = !this.thumbMouseOver ? 'rgb(137,137,137)' : 'rgb(100,100,100)'; if (this.isVertical) { context.fillRect(0, this.thumbPos, width, this.thumbExtent); -- GitLab