diff --git a/core/client/assets/sass/modules/animations.scss b/core/client/assets/sass/modules/animations.scss index dc82171fe6..b9fb4e8a79 100644 --- a/core/client/assets/sass/modules/animations.scss +++ b/core/client/assets/sass/modules/animations.scss @@ -37,21 +37,3 @@ } } -@include keyframes(shift-rightwards) { - 0% { - @include transform(translateX(-100%)); - } - - 40% { - @include transform(translateX(0%)); - } - - 60% { - @include transform(translateX(0%)); - } - - 100% { - @include transform(translateX(100%)); - } -} - diff --git a/core/client/assets/sass/modules/global.scss b/core/client/assets/sass/modules/global.scss index 18038e3426..0936b5c10b 100644 --- a/core/client/assets/sass/modules/global.scss +++ b/core/client/assets/sass/modules/global.scss @@ -11,7 +11,6 @@ * Mobile Navigation * Drop-down / Pop-up Menu * Notifications - * Loading Bar * Modals * Main Elements * Floating Headers @@ -981,29 +980,6 @@ nav { background: $blue; } - -/* ========================================================================== - Loading Bar - ========================================================================== */ - -.js-loading .loading-bar { - display: block; - @include animation(shift-rightwards 1.5s ease-in-out infinite); - @include animation-delay(0.4s); -} - -.loading-bar { - position: fixed; - display: none; - top: 0; - left: 0; - right: 0; - height: 2px; - z-index: 900; - background: $blue; - @include transform(translateX(100%)); -} - /* ========================================================================== Modals ========================================================================== */ diff --git a/core/server/views/default.hbs b/core/server/views/default.hbs index 167c040e54..b2b76235c1 100644 --- a/core/server/views/default.hbs +++ b/core/server/views/default.hbs @@ -31,8 +31,6 @@ {{{block "pageStyles"}}} -
- {{#unless hideNavbar}} {{> navbar}} {{/unless}}