Skip to content

Commit

Permalink
Merge pull request #112 from Humni/contribution-guide
Browse files Browse the repository at this point in the history
Added Contribution guide
  • Loading branch information
Humni authored Jan 15, 2019
2 parents f67a694 + 9debe50 commit 1663257
Show file tree
Hide file tree
Showing 8 changed files with 1,916 additions and 235 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["env"]
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.sass-cache
page
build.sh
bower_components
bower_components
/node_modules
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,12 @@ Visit http://rvera.github.com/image-picker
- Pass original events when firing custom events
- Fixed #49
- Fixed #78 (Thanks @rdennis!)


# Contributing

To contribute, please modify the CoffeeScript source and compile the source using

npm install
npm install uglify-js -g
npm run build
12 changes: 9 additions & 3 deletions image-picker/image-picker.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
/* line 6, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector {
overflow: auto;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
padding: 0px;
margin: 0px; }
/* line 15, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector ul {
overflow: auto;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
padding: 0px;
margin: 0px; }
ul.thumbnails.image_picker_selector li.group {width:100%;}
/* line 25, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li.group_title {
float: none; }
/* line 30, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li {
margin: 0px 12px 12px 0px;
float: left; }
/* line 35, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li .thumbnail {
padding: 6px;
border: 1px solid #dddddd;
border: 1px solid #DDD;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none; }
/* line 42, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li .thumbnail img {
-webkit-user-drag: none; }
/* line 48, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li .thumbnail.selected {
background: #0088cc; }
background: #08C; }
Loading

0 comments on commit 1663257

Please sign in to comment.