summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_mixins.scss
diff options
context:
space:
mode:
authorGislene Pereira <gislene01@gmail.com>2016-03-10 14:57:12 -0300
committerGislene Pereira <gislene01@gmail.com>2016-03-10 14:57:12 -0300
commitbfa9686b400ba09f8eec59046bc907baf7c229a6 (patch)
treedc429e1645b4ae984caa31108722cfd9cb4f97d6 /web-ui/app/scss/_mixins.scss
parentda63a4c8e563a330c54ee73dcc0bc3d8c8b46fc3 (diff)
Creating events to spin and stop spinning the logo.
Logo will spin when user selects another tag on the left bar and stops when the list of mails is rendered. Issue #238
Diffstat (limited to 'web-ui/app/scss/_mixins.scss')
-rw-r--r--web-ui/app/scss/_mixins.scss52
1 files changed, 28 insertions, 24 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss
index 4360b886..6d0bb1a3 100644
--- a/web-ui/app/scss/_mixins.scss
+++ b/web-ui/app/scss/_mixins.scss
@@ -310,33 +310,37 @@
@mixin logo {
@keyframes hideshow {
- 0% { fill: lighten($logo_color, 30); }
- 25% { opacity: 1; }
- 100% { opacity: 0; }
-}
-
-.logo-part {
- animation: hideshow 0.6s ease infinite;
- opacity: 1;
-
- &:nth-child(2) {
- opacity: 0;
- animation-delay: 0.1s;
- }
+ 0% { fill: lighten($logo_color, 30); }
+ 25% { opacity: 1; }
+ 100% { opacity: 0; }
+ }
- &:nth-child(3) {
- animation-delay: 0.2s;
- }
- &:nth-child(4) {
- animation-delay: 0.3s;
- }
- &:nth-child(5) {
- animation-delay: 0.4s;
+ .logo-part-animation-off {
+ animation: none;
}
- &:nth-child(6) {
- animation-delay: 0.5s;
+
+ .logo-part-animation-on {
+ animation: hideshow 0.6s ease infinite;
+ opacity: 1;
+
+ &:nth-child(2) {
+ opacity: 0;
+ animation-delay: 0.1s;
+ }
+
+ &:nth-child(3) {
+ animation-delay: 0.2s;
+ }
+ &:nth-child(4) {
+ animation-delay: 0.3s;
+ }
+ &:nth-child(5) {
+ animation-delay: 0.4s;
+ }
+ &:nth-child(6) {
+ animation-delay: 0.5s;
+ }
}
}
-}
@include tt-hint;