Skip to content

Commit a1b05a2

Browse files
Merge pull request #691 from patternfly/bump-v3.26.0
Bump version number to 3.26.0
2 parents 5b69250 + 82b8b39 commit a1b05a2

File tree

189 files changed

+348965
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+348965
-0
lines changed

dist/angular-patternfly.js

Lines changed: 10650 additions & 0 deletions
Large diffs are not rendered by default.

dist/angular-patternfly.min.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/docs/css/angular-patternfly.css

Lines changed: 492 additions & 0 deletions
Large diffs are not rendered by default.

dist/docs/css/animations.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.slide-reveal.ng-enter {
2+
-webkit-transition:0.5s linear all;
3+
-moz-transition:0.5s linear all;
4+
-o-transition:0.5s linear all;
5+
transition:0.5s linear all;
6+
7+
opacity:0.5;
8+
position:relative;
9+
opacity:0;
10+
top:10px;
11+
}
12+
.slide-reveal.ng-enter-active {
13+
top:0;
14+
opacity:1;
15+
}
16+
17+
.expand.ng-enter {
18+
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
19+
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
20+
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
21+
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
22+
23+
opacity:0;
24+
max-height:0;
25+
overflow:hidden;
26+
}
27+
.expand.ng-enter-active {
28+
opacity:1;
29+
max-height:40px;
30+
}
31+
32+
.expand.ng-leave {
33+
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
34+
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
35+
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
36+
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
37+
38+
opacity:1;
39+
max-height:40px;
40+
overflow:hidden;
41+
}
42+
.expand.ng-leave-active {
43+
opacity:0;
44+
max-height:0;
45+
}

0 commit comments

Comments
 (0)