From 7017fdbac08fbe302055f724df987783f2152d5a Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Thu, 29 Jan 2015 16:59:58 -0800 Subject: [PATCH] Update style of grid tools --- examples/html/gridControls.html | 4 ---- examples/html/style.css | 4 +--- examples/libraries/gridTool.js | 6 +++--- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/examples/html/gridControls.html b/examples/html/gridControls.html index ef4c6aa8c5..7e354c5bec 100644 --- a/examples/html/gridControls.html +++ b/examples/html/gridControls.html @@ -109,10 +109,6 @@ -
- -
-
diff --git a/examples/html/style.css b/examples/html/style.css index 08ca32aba5..8b52447ea2 100644 --- a/examples/html/style.css +++ b/examples/html/style.css @@ -73,8 +73,6 @@ body { } .grid-section { - border-top: 0.75pt solid #DDD; - background-color: #efefef; } input[type=button] { @@ -169,7 +167,7 @@ input { color: rgb(150, 150, 150); } -#properties-list input, #properties-list textarea { +input, textarea { background-color: rgb(102, 102, 102); color: rgb(204, 204, 204); border: none; diff --git a/examples/libraries/gridTool.js b/examples/libraries/gridTool.js index 7eff1da5d0..6e16186abc 100644 --- a/examples/libraries/gridTool.js +++ b/examples/libraries/gridTool.js @@ -2,11 +2,11 @@ Grid = function(opts) { var that = {}; var colors = [ - { red: 0, green: 255, blue: 0 }, - { red: 255, green: 255, blue: 255 }, { red: 0, green: 0, blue: 0 }, - { red: 0, green: 0, blue: 255 }, + { red: 255, green: 255, blue: 255 }, { red: 255, green: 0, blue: 0 }, + { red: 0, green: 255, blue: 0 }, + { red: 0, green: 0, blue: 255 }, ]; var colorIndex = 0; var gridAlpha = 0.6;