mirror of
https://github.com/discourse/discourse.git
synced 2025-03-26 05:46:01 +08:00
Revert "FIX: make full height menu and cloak respect custom headers"
This reverts commit a61d9deba192a54333007ec838dc5c8e1fa857fc.
This commit is contained in:
parent
dc477d1228
commit
e8a75628fd
@ -367,7 +367,7 @@ const SiteHeaderComponent = MountWidget.extend(Docking, PanEvents, {
|
||||
$headerCloak.show();
|
||||
}
|
||||
|
||||
const menuTop = this.site.mobileView ? headerTop() : headerHeight();
|
||||
const menuTop = this.site.mobileView ? 0 : headerHeight();
|
||||
|
||||
let height;
|
||||
const winHeightOffset = 16;
|
||||
@ -386,7 +386,6 @@ const SiteHeaderComponent = MountWidget.extend(Docking, PanEvents, {
|
||||
}
|
||||
if (style.top !== menuTop + "px" || style.height !== height) {
|
||||
$panel.css({ top: menuTop + "px", height });
|
||||
$(".header-cloak").css({ top: menuTop + "px" });
|
||||
}
|
||||
$("body").removeClass("drop-down-mode");
|
||||
}
|
||||
@ -435,9 +434,3 @@ export function headerHeight() {
|
||||
$header.outerHeight() + headerOffsetTop - $(window).scrollTop()
|
||||
);
|
||||
}
|
||||
|
||||
export function headerTop() {
|
||||
const $header = $("header.d-header");
|
||||
const headerOffset = $header.offset();
|
||||
return headerOffset ? headerOffset.top : 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user