steveathon / bootstrap-wysiwyg

Tiny bootstrap-compatible WYSIWYG rich text editor
MIT License
661 stars 1.71k forks source link

CSS style for image upload has some problem #86

Closed billzt closed 8 years ago

billzt commented 8 years ago

The original CSS style has problems. .imgUpload { width: 10; height: 10; position:absolute }

I can't click the upload button. It didn't do anything.

However, if I change to this (inspired from http://www.bootcss.com/p/bootstrap-wysiwyg/), it works.

.imgUpload { opacity: 0; position: absolute; top: 0px; left: 0px; width: 41px; height: 30px; }

codewithtyler commented 8 years ago

Which examples file are you looking at?

billzt commented 8 years ago

@RandomlyKnighted example file: form-post.html

codewithtyler commented 8 years ago

Ah I see what you're talking about now. PR #68 fixes this issue.

billzt commented 8 years ago

OK.