Update style of grid tools

This commit is contained in:
Ryan Huffman 2015-01-29 16:59:58 -08:00
parent 0307448ec3
commit 7017fdbac0
3 changed files with 4 additions and 10 deletions

View file

@ -109,10 +109,6 @@
</script> </script>
</head> </head>
<body onload='loaded();'> <body onload='loaded();'>
<div class="section-header">
<label>Horizontal Grid</label>
</div>
<div class="grid-section"> <div class="grid-section">
<div class="property-section"> <div class="property-section">

View file

@ -73,8 +73,6 @@ body {
} }
.grid-section { .grid-section {
border-top: 0.75pt solid #DDD;
background-color: #efefef;
} }
input[type=button] { input[type=button] {
@ -169,7 +167,7 @@ input {
color: rgb(150, 150, 150); color: rgb(150, 150, 150);
} }
#properties-list input, #properties-list textarea { input, textarea {
background-color: rgb(102, 102, 102); background-color: rgb(102, 102, 102);
color: rgb(204, 204, 204); color: rgb(204, 204, 204);
border: none; border: none;

View file

@ -2,11 +2,11 @@ Grid = function(opts) {
var that = {}; var that = {};
var colors = [ 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: 0 },
{ red: 0, green: 0, blue: 255 }, { red: 255, green: 255, blue: 255 },
{ red: 255, green: 0, blue: 0 }, { red: 255, green: 0, blue: 0 },
{ red: 0, green: 255, blue: 0 },
{ red: 0, green: 0, blue: 255 },
]; ];
var colorIndex = 0; var colorIndex = 0;
var gridAlpha = 0.6; var gridAlpha = 0.6;