Skip to content

Commit

Permalink
New release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dixso committed Oct 24, 2013
1 parent e7b7fc2 commit cf97886
Show file tree
Hide file tree
Showing 7 changed files with 613 additions and 459 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ jQuery Modal Window Effects with transitions CSS3. See the [project page](http:/

## Changelog:

### Version 1.1.0 - 2013/10/22
* Added new property of the position to the output.
* Added support responsive.
* Added property hide scrollbar automatically.
* Cleaning stylesheets for the modern browsers.
* Bug fixes.

### Version 1.0.2 - 2013/10/08
* Bug fix on callback that fires once is closed.

Expand All @@ -13,4 +20,4 @@ jQuery Modal Window Effects with transitions CSS3. See the [project page](http:/
* First release.

### Version 0.1b - 2013/09/06
* First beta release.
* First beta release.
5 changes: 3 additions & 2 deletions custombox.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
"transitions",
"dialog",
"ajax",
"jquery"
"jquery",
"responsive"
],
"version": "1.0.2",
"version": "1.1.0",
"author": {
"name": "Julio De La Calle",
"email": "juliodlcp@gmail.com",
Expand Down
37 changes: 28 additions & 9 deletions demo/css/demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,6 @@ h3 em {
border-radius: 6px;
outline: 0 none;
}
@media only screen and (max-device-width: 480px) {
.modal-example-content {
width: 300px;
}
.modal-example-body p {
height: 200px;
overflow: hidden;
}
}
.modal-example-header {
border-bottom: 1px solid #E5E5E5;
padding: 15px;
Expand Down Expand Up @@ -178,4 +169,32 @@ h3 em {
}
.justme .modal-example-header {
border: none;
}


/*
----------------------------
Modal Example 4
----------------------------
*/
#modal3 {
margin-top: 70px;
}


/*
----------------------------
Custom animation
----------------------------
*/
.custombox-close.customslide .custombox-modal-content {
-webkit-transform: scale(2);
-ms-transform: scale(2);
-o-transform: scale(2);
transform: scale(2);
opacity: 1;
-webkit-transition-property: all;
-ms-transition-property: all;
-o-transition-property: all;
transition-property: all !important;
}
Loading

0 comments on commit cf97886

Please sign in to comment.