Skip to content

Commit

Permalink
Merge pull request #718 from davetrollope/fix_wrapper_size
Browse files Browse the repository at this point in the history
make frame size higher level
  • Loading branch information
jsor committed Sep 19, 2014
2 parents 1804c33 + 5d7c1ff commit 0867ae6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions examples/ajax/jcarousel.ajax.css
Expand Up @@ -2,6 +2,11 @@
margin: 20px auto;
position: relative;
border: 10px solid #fff;
/*
(4 * width: 150px) + (3 * margin-right: 1px) = 603px
*/
width: 603px;
height: 100px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Expand All @@ -15,11 +20,6 @@
.jcarousel {
position: relative;
overflow: hidden;
/*
(4 * width: 150px) + (3 * margin-right: 1px) = 603px
*/
width: 603px;
height: 100px;
}

.jcarousel ul {
Expand Down
4 changes: 2 additions & 2 deletions examples/basic/jcarousel.basic.css
Expand Up @@ -2,6 +2,8 @@
margin: 20px auto;
position: relative;
border: 10px solid #fff;
width: 600px;
height: 400px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Expand Down Expand Up @@ -30,8 +32,6 @@
.jcarousel {
position: relative;
overflow: hidden;
width: 600px;
height: 400px;
}

.jcarousel ul {
Expand Down
6 changes: 3 additions & 3 deletions examples/data-attributes/jcarousel.data-attributes.css
Expand Up @@ -2,6 +2,8 @@
margin: 20px auto;
position: relative;
border: 10px solid #fff;
width: 600px;
height: 400px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Expand Down Expand Up @@ -30,8 +32,6 @@
.jcarousel {
position: relative;
overflow: hidden;
width: 600px;
height: 400px;
}

.jcarousel ul {
Expand Down Expand Up @@ -79,4 +79,4 @@
.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
display: block;
}
}
6 changes: 3 additions & 3 deletions examples/transitions/jcarousel.transitions.css
Expand Up @@ -2,6 +2,8 @@
margin: 20px auto;
position: relative;
border: 10px solid #fff;
width: 600px;
height: 400px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Expand Down Expand Up @@ -29,8 +31,6 @@
.jcarousel {
position: relative;
overflow: hidden;
width: 600px;
height: 400px;
}

.jcarousel ul {
Expand Down Expand Up @@ -80,4 +80,4 @@
.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
display: block;
}
}

0 comments on commit 0867ae6

Please sign in to comment.