mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Revert "loading bar implementation"
This reverts commitde6b8ee9b3
and16742bcaef
This commit is contained in:
parent
53dc1b4466
commit
fdf5e3d69e
3 changed files with 0 additions and 44 deletions
|
@ -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%));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
========================================================================== */
|
||||
|
|
|
@ -31,8 +31,6 @@
|
|||
{{{block "pageStyles"}}}
|
||||
</head>
|
||||
<body class="{{bodyClass}}">
|
||||
<div class="loading-bar"></div>
|
||||
|
||||
{{#unless hideNavbar}}
|
||||
{{> navbar}}
|
||||
{{/unless}}
|
||||
|
|
Loading…
Reference in a new issue