Skip to content

Bump version number to 3.26.0 #691

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10,650 changes: 10,650 additions & 0 deletions dist/angular-patternfly.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

492 changes: 492 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