Skip to content

Commit

Permalink
Updating dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrowd committed Jan 7, 2016
1 parent 76aa2e7 commit b1c2fd8
Show file tree
Hide file tree
Showing 8 changed files with 88 additions and 43 deletions.
90 changes: 62 additions & 28 deletions dist/carousel.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,15 @@ button {
.carousel .control-disabled.control-arrow {
opacity: 0;
filter: alpha(opacity=0);
cursor: inherit; }
.carousel .control-left.control-arrow {
cursor: inherit;
display: none; }
.carousel .control-prev.control-arrow {
left: 0; }
.carousel .control-left.control-arrow:before {
.carousel .control-prev.control-arrow:before {
content: '\e803'; }
.carousel .control-right.control-arrow {
.carousel .control-next.control-arrow {
right: 0; }
.carousel .control-right.control-arrow:before {
.carousel .control-next.control-arrow:before {
content: '\e802'; }

.carousel {
Expand All @@ -119,8 +120,7 @@ button {
margin-top: -13px;
font-size: 18px; }
.carousel .thumbs-wrapper {
position: relative;
margin: 0 20px;
margin: 20px;
overflow: hidden; }
.carousel .thumbs {
-webkit-transition: all 0.15s ease-in;
Expand Down Expand Up @@ -174,40 +174,74 @@ button {
overflow: hidden;
margin: auto;
width: 100%; }
.carousel .slider-wrapper.axis-horizontal .slider {
display: flex;
display: -webkit-flex; }
.carousel .slider-wrapper.axis-horizontal .slide {
flex-direction: column;
flex-flow: column; }
.carousel .slider-wrapper.axis-vertical .slider {
display: inline-block; }
.carousel .slider-wrapper.axis-vertical .slide {
position: relative;
display: block;
margin: 0; }
.carousel .slider {
-webkit-transition: all 0.35s ease-in;
-moz-transition: all 0.35s ease-in;
-ms-transition: all 0.35s ease-in;
-o-transition: all 0.35s ease-in;
transition: all 0.35s ease-in;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
display: flex;
position: relative;
list-style: none; }
.carousel .slider.swiping {
-webkit-transition: none 0 ease-in;
-moz-transition: none 0 ease-in;
-ms-transition: none 0 ease-in;
-o-transition: none 0 ease-in;
transition: none 0 ease-in; }
.carousel .slider.animated {
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out; }
.carousel .slide {
flex-direction: column;
flex-flow: column;
min-width: 100%;
margin: 0; }
margin: 0;
padding-bottom: 32px; }
.carousel .slide img {
width: 100%;
vertical-align: top; }
.carousel .slide .legend {
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
position: absolute;
bottom: 0;
width: 100%;
background: #000;
color: #fff;
padding: 10px;
font-size: 12px;
text-align: center; }
@media (min-width: 960px) {
.carousel .slide {
padding-bottom: 0; }
.carousel .slide .legend {
bottom: 40px;
margin-left: 10%;
width: 80%;
background: rgba(0, 0, 0, 0.3);
color: rgba(255, 255, 255, 0.6);
border-radius: 5px;
padding: 10px;
opacity: 0; }
.carousel .slide.selected .legend {
opacity: 1; }
.carousel .slide:hover .legend {
background: rgba(0, 0, 0, 0.5);
color: rgba(255, 255, 255, 0.9); } }
.carousel .control-dots {
position: absolute;
bottom: 0;
bottom: 32px;
margin: 10px 0;
text-align: center;
width: 100%; }
@media (min-width: 960px) {
.carousel .control-dots {
bottom: 0; } }
.carousel .control-dots .dot {
-webkit-transition: opacity 0.25s ease-in;
-moz-transition: opacity 0.25s ease-in;
Expand Down
2 changes: 1 addition & 1 deletion dist/carousel.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions dist/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,14 @@ button {
.example {
margin: 20px 0; }

.parent {
background: #333; }

.page-carousel {
padding: 40px;
border: 1px solid #fff;
width: 80%;
margin: 40px auto; }

h5 {
margin-bottom: 10px; }
15 changes: 8 additions & 7 deletions dist/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions dist/vendors.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
Carousel: require('./components/Carousel'),
ImageGallery: require('./components/ImageGallery')
Thumbs: require('./components/Thumbs')
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"scripts": {
"start": "node --harmony ./node_modules/gulp/bin/gulp",
"build": "node --harmony ./node_modules/gulp/bin/gulp package",
"pre-deploy": "node --harmony ./node_modules/gulp/bin/gulp deploy",
"test": "jest",
"prerelease": "npm run build",
"release": "(git pull origin master && npm version patch && git push origin master && git checkout release && git merge master && git push origin release && git checkout master && npm publish)"
Expand Down

0 comments on commit b1c2fd8

Please sign in to comment.