diff options
| author | jules <jules@okfoc.us> | 2013-12-30 11:25:48 -0500 |
|---|---|---|
| committer | jules <jules@okfoc.us> | 2013-12-30 11:25:48 -0500 |
| commit | 95e72fbdf718a04aa567c706fba11a8e7688bce9 (patch) | |
| tree | 46e2c5363f39f7bcd5409bfb933c43511b81b639 /dither-picker.html | |
| parent | 661367cbb7ecdc6edab200a43156b10e5fe5ac13 (diff) | |
fix dither-picker css
Diffstat (limited to 'dither-picker.html')
| -rw-r--r-- | dither-picker.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dither-picker.html b/dither-picker.html index f4680c2..5e9bff9 100644 --- a/dither-picker.html +++ b/dither-picker.html @@ -4,7 +4,8 @@ <title>Dither</title> <style> form { display: inline-block; } - #gallery-images img { max-width: 200px; height: 90px; margin: 5px; } + #gallery-images { display: block; max-height: 210px; overflow-y: auto; } + #gallery-images img, #gallery-images canvas { max-width: 200px; height: 100px; margin: 5px; cursor: pointer; } </style> </head> <body> @@ -74,10 +75,12 @@ ui.bind = function(){ } ui.choose = function(){ + status("loading image..") loadImage( this.src, ui.ready ); } ui.ready = function(){ + status("ready") loading = false if (window.gif) { frames = gif.frames |
