提交 5e9625bf 编写于 作者: A Annabel Dunstone Gray

Add nav border on scroll

上级 cfea4883
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-arrow-callback, no-unused-vars, one-var, one-var-declaration-per-line, vars-on-top, max-len */
import _ from 'underscore';
(function() {
var hideEndFade;
......@@ -45,4 +46,14 @@
}
});
});
function applyScrollNavClass() {
if ($(window).scrollTop() > 0) {
$('.navbar-gitlab').addClass('scroll');
} else {
$('.navbar-gitlab').removeClass('scroll');
}
}
$(window).scroll( _.throttle(applyScrollNavClass, 250));
}).call(window);
......@@ -42,6 +42,10 @@ header {
border-bottom: none;
}
&.scroll {
border-bottom: 1px solid $border-color;
}
.container-fluid {
width: 100% !important;
filter: none;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册