Skip to content

Commit

Permalink
Merge branch 'v1.2.0' to master.
Browse files Browse the repository at this point in the history
  • Loading branch information
nero120 committed Feb 9, 2017
2 parents 842c746 + d65a925 commit e7fd41a
Show file tree
Hide file tree
Showing 89 changed files with 7,398 additions and 3,234 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
.vscode/
node_modules/
build/
css/styles.css
*.log
*.log
4 changes: 3 additions & 1 deletion .jshintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/build
/node_modules
/js/qrcode.js
/js/qrcode.js
/platform/mobileapps/cordova
/platform/hello
581 changes: 366 additions & 215 deletions app.html

Large diffs are not rendered by default.

98 changes: 64 additions & 34 deletions css/animations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,30 @@
}
}

@include keyframes(animate-intro-slide-in) {
@include keyframes (animate-loader) {
0% {
height: 4px;
margin-top: $loader-bar-height / 2 - 2px;
margin-bottom: $loader-bar-height / 2 - 2px;
}
50% {
height: 4px;
margin-top: $loader-bar-height / 2 - 2px;
margin-bottom: $loader-bar-height / 2 - 2px;
}
75% {
height: $loader-bar-height;
margin-top: 0px;
margin-bottom: 0px;
}
100% {
height: 4px;
margin-top: $loader-bar-height / 2 - 2px;
margin-bottom: $loader-bar-height / 2 - 2px;
}
}

@include keyframes(animate-slide-in) {
0% {
@include css-prefix(transform, translateX(105%));
}
Expand All @@ -19,7 +42,7 @@
}
}

@include keyframes(animate-intro-slide-out) {
@include keyframes(animate-slide-out) {
0% {
@include css-prefix(transform, translateX(0%));
}
Expand All @@ -28,7 +51,24 @@
}
}

@include keyframes(animate-intro-reverse-slide-in) {
@include keyframes(animate-slide-out-fold-up) {
0% {
@include css-prefix(transform, translateX(0%));
max-height: 250px;
margin-bottom: 15px;
}
60% {
@include css-prefix(transform, translateX(-105%));
max-height: 250px;
margin-bottom: 15px;
}
100% {
max-height: 0px;
margin-bottom: 0px;
}
}

@include keyframes(animate-reverse-slide-in) {
0% {
@include css-prefix(transform, translateX(-105%));
}
Expand All @@ -37,7 +77,7 @@
}
}

@include keyframes(animate-intro-reverse-slide-out) {
@include keyframes(animate-reverse-slide-out) {
0% {
@include css-prefix(transform, translateX(0%));
}
Expand All @@ -48,29 +88,37 @@

.animate-fade {
&.ng-hide {
opacity: 0;
opacity: 0!important;
}

&.ng-hide-remove {
transition: opacity, linear, 0.2s;
transition: opacity, linear, 0.3s;
}
}

.animate-fade-long {
&.ng-hide {
opacity: 0!important;
}

&.ng-hide-remove {
transition: opacity, linear, 0.7s;
}
}

.animate-fade-out {
&.ng-hide {
opacity: 0;
opacity: 0!important;
}

&.ng-hide-add {
transition: opacity, linear, 0.2s;
}
}

.animate-fade-long {
transition: opacity, linear, 0.7s;

.animate-fade-out-long {
&.ng-hide {
opacity: 0;
opacity: 0!important;
}

&.ng-hide-add {
Expand All @@ -82,40 +130,22 @@
@include animation(animate-flash 0.8s linear infinite);
}

.animate-fold {
transition: height, linear, 0.1s;
overflow: hidden;

&.ng-hide {
height: 0!important;
}
}

.animate-fold-max {
transition: max-height, linear, 0.1s;
overflow: hidden;

&.ng-hide {
max-height: 0!important;
}
}

.animate-intro-slide {
.animate-slide {
&.ng-hide-add {
@include animation(animate-intro-slide-out 0.2s linear);
@include animation(animate-slide-out 0.2s linear);
}

&.ng-hide-remove {
@include animation(animate-intro-slide-in 0.2s linear);
@include animation(animate-slide-in 0.2s linear);
}

&.reverse {
&.ng-hide-add {
@include animation(animate-intro-reverse-slide-out 0.2s linear);
@include animation(animate-reverse-slide-out 0.2s linear);
}

&.ng-hide-remove {
@include animation(animate-intro-reverse-slide-in 0.2s linear);
@include animation(animate-reverse-slide-in 0.2s linear);
}
}
}
2 changes: 1 addition & 1 deletion css/font-awesome.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
$fa-font-path: '../fonts/font-awesome/';
@import "../../css/variables.scss";
@import "../../node_modules/font-awesome/scss/font-awesome.scss";
Loading

0 comments on commit e7fd41a

Please sign in to comment.