diff --git a/app/fonts/taiga.eot b/app/fonts/taiga.eot index 2c8a90f6..bd17e992 100644 Binary files a/app/fonts/taiga.eot and b/app/fonts/taiga.eot differ diff --git a/app/fonts/taiga.svg b/app/fonts/taiga.svg index 67ec4c4d..785f108d 100644 --- a/app/fonts/taiga.svg +++ b/app/fonts/taiga.svg @@ -38,4 +38,5 @@ + diff --git a/app/fonts/taiga.ttf b/app/fonts/taiga.ttf index 96c7df22..3c7fe2d4 100644 Binary files a/app/fonts/taiga.ttf and b/app/fonts/taiga.ttf differ diff --git a/app/fonts/taiga.woff b/app/fonts/taiga.woff index b91b99d5..467c7869 100644 Binary files a/app/fonts/taiga.woff and b/app/fonts/taiga.woff differ diff --git a/app/partials/views/modules/projects-nav.jade b/app/partials/views/modules/projects-nav.jade index d2167986..5319f27a 100644 --- a/app/partials/views/modules/projects-nav.jade +++ b/app/partials/views/modules/projects-nav.jade @@ -1,7 +1,8 @@ .projects-nav-overlay div img(src="/images/logo.png", alt="TAIGA") - p Loading project... + p Loading project + span.icon.icon-spinner div.lightbox.lightbox_create-project.hidden(tg-lb-create-project) include lightbox_create-project diff --git a/app/styles/dependencies/animation.scss b/app/styles/dependencies/animation.scss new file mode 100644 index 00000000..fd7da7b1 --- /dev/null +++ b/app/styles/dependencies/animation.scss @@ -0,0 +1,5 @@ +@include keyframes(spin) { + 100% { + @include transform(rotate(360deg)); + } +} diff --git a/app/styles/dependencies/typography.scss b/app/styles/dependencies/typography.scss index b46480d3..3563fe57 100755 --- a/app/styles/dependencies/typography.scss +++ b/app/styles/dependencies/typography.scss @@ -218,3 +218,6 @@ a:visited { .icon-attachments:before { content: 'E'; } +.icon-spinner:before { + content: 'F'; +} diff --git a/app/styles/main.scss b/app/styles/main.scss index d99dfca0..8871fbf2 100755 --- a/app/styles/main.scss +++ b/app/styles/main.scss @@ -19,6 +19,7 @@ $prefix-for-spec: true; @import 'dependencies/mixins'; @import 'dependencies/responsive'; @import 'dependencies/forms'; +@import 'dependencies/animation'; //################################################# // components diff --git a/app/styles/modules/common/projects-nav.scss b/app/styles/modules/common/projects-nav.scss index a4c9d735..6d605a22 100644 --- a/app/styles/modules/common/projects-nav.scss +++ b/app/styles/modules/common/projects-nav.scss @@ -98,7 +98,8 @@ width: 100%; z-index: 99900; div { - margin: 10% auto; + //@include transform(translateY(-50%)); + margin: 20% auto; opacity: 0; text-align: center; width: 500px; @@ -108,4 +109,9 @@ color: $whitish; padding-top: 20px; } + .icon { + @extend %xxlarge; + @include animation(spin 1s linear infinite); + color: $whitish; + } }