Skip to content

Commit

Permalink
chore(release): updates generated by Travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
patternfly-build committed Jan 4, 2018
1 parent 668ed10 commit 2e7a785
Show file tree
Hide file tree
Showing 243 changed files with 384,176 additions and 0 deletions.
18,884 changes: 18,884 additions & 0 deletions dist/angular-patternfly.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions dist/angular-patternfly.min.js

Large diffs are not rendered by default.

1,173 changes: 1,173 additions & 0 deletions dist/docs/css/angular-patternfly.css

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions dist/docs/css/animations.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
.slide-reveal.ng-enter {
-webkit-transition:0.5s linear all;
-moz-transition:0.5s linear all;
-o-transition:0.5s linear all;
transition:0.5s linear all;

opacity:0.5;
position:relative;
opacity:0;
top:10px;
}
.slide-reveal.ng-enter-active {
top:0;
opacity:1;
}

.expand.ng-enter {
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;

opacity:0;
max-height:0;
overflow:hidden;
}
.expand.ng-enter-active {
opacity:1;
max-height:40px;
}

.expand.ng-leave {
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;

opacity:1;
max-height:40px;
overflow:hidden;
}
.expand.ng-leave-active {
opacity:0;
max-height:0;
}
Loading

0 comments on commit 2e7a785

Please sign in to comment.